|
|
6 سال پیش | |
|---|---|---|
| .. | ||
| src | 92cc3df5ca ensure that client-entry.js to be ES6 module | 4 سال پیش |
| .editorconfig | 8e96494eb9 init | 4 سال پیش |
| .eslintignore | c40f2efb97 setup eslint/stylelint | 4 سال پیش |
| .eslintrc.js | c40f2efb97 setup eslint/stylelint | 4 سال پیش |
| .gitignore | c097c3fd6d move sources | 4 سال پیش |
| .prettierignore | c40f2efb97 setup eslint/stylelint | 4 سال پیش |
| .prettierrc | c40f2efb97 setup eslint/stylelint | 4 سال پیش |
| LICENSE | 5714d80376 update docs | 4 سال پیش |
| README.md | c6a93430c6 update docs | 4 سال پیش |
| package.json | a8c1f2d0ea support node v12 | 4 سال پیش |
| yarn.lock | 6d091e9946 remove babel | 4 سال پیش |
GROWI Plugin to add PukiwikiLikeLinker
Add the feature to use [[alias>./relative/path]] expression in markdown.
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>
install plugin
$ npm install --save growi-plugin-pukiwiki-like-linker
build client app (see GROWI)