1.1.0 • Published 2 years ago

vuepress-plugin-auto-link-label v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vuepress-plugin-auto-link-label

Replaces Markdown link label (specified by 'marker' option) with page title.

Option

  • marker: string of replace target (default: '!').

Configuration

.vuepress/config.js

module.exports = {
  plugins: [
    ['auto-link-label', {
      marker: '!!!',
    }],
  ],
};

Precautions for use

  • Markdown link should be the site root-relative path.

Example

/path1/page1.md

# Page 1

...

/path2/page2.md

See: [!](/path1/page1.md).

will be (! is converted to Page 1):

<p>See: <a href="/path1/page1.html">Page 1</a>.</p>
1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago