Compare commits

..

No commits in common. "e184b6f8b4a3dfc40d261a465fab815861c095ce" and "8203bbe76391eebdf14d294986f88ecaec2c0820" have entirely different histories.

5 changed files with 5 additions and 7 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
node $(dirname "$(readlink -f "$0")")/markdown2html.js $*
node $(dirname $0)/markdown2html.js $*

View File

@ -1,2 +1,2 @@
#!/bin/sh
node $(dirname "$(readlink -f "$0")")/strip-frontmatter.js $*
node $(dirname $0)/strip-frontmatter.js $*

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@doc-utils/markdown2html",
"version": "0.1.21",
"version": "0.1.20",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@doc-utils/markdown2html",
"version": "0.1.21",
"version": "0.1.20",
"dependencies": {
"bytefield-svg": "^1.6.1",
"dompurify": "^2.3.6",

View File

@ -1,6 +1,6 @@
{
"name": "@doc-utils/markdown2html",
"version": "0.1.21",
"version": "0.1.20",
"publishConfig": {
"registry": "https://gitea.home.jbrumond.me/api/packages/doc-utils/npm/"
},

View File

@ -3,8 +3,6 @@ import { marked } from 'marked';
import { ParsedAttributes, parse_attributes } from './attrs';
import { MarkdownOptions } from './render';
// todo: deprecate this
export interface BreadcrumbNavToken extends marked.Tokens.Generic {
text: string;
attrs: ParsedAttributes;