diff options
author | Samy Pessé <samypesse@gmail.com> | 2017-02-19 22:39:53 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2017-02-19 22:39:53 +0100 |
commit | 34879aafb2066dafd7618524f485ca1803a87684 (patch) | |
tree | 28defbf7f930851f552bda1242ba2e3b13e601fc /packages/gitbook-plugin-headings/package.json | |
parent | 5ae897de06b2e0cba77de57c6af969bf982a7552 (diff) | |
download | gitbook-34879aafb2066dafd7618524f485ca1803a87684.zip gitbook-34879aafb2066dafd7618524f485ca1803a87684.tar.gz gitbook-34879aafb2066dafd7618524f485ca1803a87684.tar.bz2 |
Improve configuration for heading anchors
Diffstat (limited to 'packages/gitbook-plugin-headings/package.json')
-rw-r--r-- | packages/gitbook-plugin-headings/package.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/gitbook-plugin-headings/package.json b/packages/gitbook-plugin-headings/package.json index 9a8c0c7..70eac7b 100644 --- a/packages/gitbook-plugin-headings/package.json +++ b/packages/gitbook-plugin-headings/package.json @@ -1,6 +1,7 @@ { "name": "gitbook-plugin-headings", - "description": "Automatically add anchors to headings", + "title": "Anchor Header", + "description": "Generate anchored headings for your pages", "main": "index.js", "browser": "./_assets/plugin.js", "version": "4.0.0-alpha.4", @@ -30,7 +31,11 @@ "position": { "type": "string", "title": "Position of anchors", - "default": "left" + "default": "left", + "enum": [ + "left", + "right" + ] } } } |