Yuki Takei 2125a272c9 update README 4 anni fa
..
src 77ad8c9afc update meta to plugin v4 4 anni fa
.eslintignore 88b4a206c2 remove unnecessary files 4 anni fa
.gitignore a098ab372a update build settings 4 anni fa
README.md 2125a272c9 update README 4 anni fa
package.json a098ab372a update build settings 4 anni fa
tsconfig.base.json a098ab372a update build settings 4 anni fa
tsconfig.build.cjs.json a098ab372a update build settings 4 anni fa
tsconfig.build.esm.json a098ab372a update build settings 4 anni fa
tsconfig.json 8d2d14b4f7 organize tsconfig 4 anni fa

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>