update bin scripts to work as symlinks
This commit is contained in:
parent
8203bbe763
commit
e601f45836
@ -1,2 +1,2 @@
|
||||
#!/bin/sh
|
||||
node $(dirname $0)/markdown2html.js $*
|
||||
node $(dirname "$(readlink -f "$0")")/markdown2html.js $*
|
@ -1,2 +1,2 @@
|
||||
#!/bin/sh
|
||||
node $(dirname $0)/strip-frontmatter.js $*
|
||||
node $(dirname "$(readlink -f "$0")")/strip-frontmatter.js $*
|
@ -3,6 +3,8 @@ 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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user