Yuki Takei c535f56c08 rename package name 4 years ago
..
src c535f56c08 rename package name 4 years ago
.editorconfig c535f56c08 rename package name 4 years ago
.eslintignore c535f56c08 rename package name 4 years ago
.eslintrc.js c535f56c08 rename package name 4 years ago
.gitignore c535f56c08 rename package name 4 years ago
.prettierignore c535f56c08 rename package name 4 years ago
.prettierrc c535f56c08 rename package name 4 years ago
LICENSE c535f56c08 rename package name 4 years ago
README.md c535f56c08 rename package name 4 years ago
package.json c535f56c08 rename package name 4 years ago
yarn.lock c535f56c08 rename package name 4 years ago

README.md

growi-plugin-pukiwiki-like-linker

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>

Install

  1. install plugin

    $ npm install --save growi-plugin-pukiwiki-like-linker
    
  2. build client app (see GROWI)