Yuki Takei 320d7dcff3 remove inlineSources option hace 4 años
..
src 1c66d1c6a1 rename meta.js to index.js hace 4 años
.eslintignore 88b4a206c2 remove unnecessary files hace 4 años
.gitignore a098ab372a update build settings hace 4 años
README.md 2125a272c9 update README hace 4 años
package.json d7484d2962 bump-versions hace 4 años
tsconfig.base.json a098ab372a update build settings hace 4 años
tsconfig.build.cjs.json 320d7dcff3 remove inlineSources option hace 4 años
tsconfig.build.esm.json 320d7dcff3 remove inlineSources option hace 4 años
tsconfig.json 8d2d14b4f7 organize tsconfig hace 4 años

README.md

growi-plugin-pukiwiki-like-linker

[GROWI][growi] Plugin to add PukiwikiLikeLinker

Overview

Add the feature to use [[alias>./relative/path]] expression in markdown.

Replacement examples

When you write at /Level1/Level2 page:

<!-- Markdown -->
[[./Level3]]
<!-- HTML -->
<a href="/Level1/Level2/Level3">./Level3</a>


<!-- Markdown -->
[[../AnotherLevel2]]
<!-- HTML -->
<a href="/Level1/AnotherLevel2">../AnotherLevel2</a>


<!-- Markdown -->
Level 3 page is [[here>./Level3]]
<!-- HTML -->
Level 3 page is <a href="/Level1/Level2/Level3">here</a>


<!-- Markdown -->
[[example.com>https://example.com/]]
<!-- HTML -->
<a href="https://example.com/">example.com</a>