Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 743 Bytes

MARKDOWN.md

File metadata and controls

36 lines (22 loc) · 743 Bytes

Special Markdown syntax

indoc supports a few nonstandard Markdown features.

Project file linking

See lib/section.js for the source code.

You can link to files in the project by prefixing the URL with :; for example:

[See foobar.js](:foobar.js) <!-- links to ./foobar.js -->

will link to foobar.js within the project, relative to the current file. You can also use absolute links if you'd like:

[See foobar.js](:/src/foobar.js) <!-- links to /src/foobar.js -->

In addition, if the link text is the filename, you can omit the filename in the URL:

See [foobar.js](:) <!-- links to ./foobar.js -->

Header IDs

Headers

click here to see