vimwiki_markdown 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/changelog.md +3 -0
- data/lib/vimwiki_markdown/version.rb +1 -1
- data/lib/vimwiki_markdown/wiki_body.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de2e7b948c3ae02f7dcda86ea0adc4f8868fb00b
|
4
|
+
data.tar.gz: 67c994ac7ea16eb5087d3dbbf3b65d591d2e8322
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f4e57d022af88b4eeacbc550ac7b68d80c12d846537c2cf2b5805be41868fc36ea65cfc44b098dea113e08444cbe2f90a508c5ce65ecd5b1b4c7dc534a381dd
|
7
|
+
data.tar.gz: 4f19b24a1fd5ed29ffc67b3843ae9cf5f4b29bf6e03fbb1ced98ce8824152a3c2d5600af2c501c0c54e9a6b39b81afedde5b77773aa847a2d1cb21e3d1a52879
|
data/changelog.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 0.1.3 [August 11th 2015]
|
2
|
+
* Adding the TableOfContents filter so that bookmarks are created.
|
3
|
+
|
1
4
|
## 0.1.1 [April 22nd 2015]
|
2
5
|
* Aaaaannnnd reverting that change. While it totally works, it probably
|
3
6
|
is overkill to have Druby running. The major issue is that vimwiki
|
@@ -13,7 +13,8 @@ class VimwikiMarkdown::WikiBody
|
|
13
13
|
fixlinks
|
14
14
|
github_markup = GitHub::Markup.render('README.markdown', markdown_body)
|
15
15
|
pipeline = HTML::Pipeline.new [
|
16
|
-
HTML::Pipeline::SyntaxHighlightFilter
|
16
|
+
HTML::Pipeline::SyntaxHighlightFilter,
|
17
|
+
HTML::Pipeline::TableOfContentsFilter
|
17
18
|
]
|
18
19
|
result = pipeline.call(github_markup)
|
19
20
|
result[:output].to_s
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vimwiki_markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Davey
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|