vimwiki_markdown 0.2.4 → 0.2.5
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/.travis.yml +3 -0
- data/README.md +1 -1
- data/lib/vimwiki_markdown/options.rb +1 -1
- data/lib/vimwiki_markdown/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aced79dd558ad5f073dc4e57fb727e95f7341dc5
|
|
4
|
+
data.tar.gz: 49fc383b31e5def606eb2d08de02fe56549f1861
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b01693f8c5149f6c712335a64bd27bad5ac843705a6ac8b5a81b077326e250acf5974ce352c624a2f8be266d96732738cfe401d3140ae1211e131dd2fce94ec2
|
|
7
|
+
data.tar.gz: 520c570ee5a4748672f9506d8b5e53d6ebc37554e681cd9c9eae50409f771d4b2734a0759d864ee9716b42da809a5271818af21906c768f17e0fd4bcf5334897
|
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# VimwikiMarkdown
|
|
2
|
-
[](https://codeclimate.com/github/patrickdavey/vimwiki_markdown)
|
|
2
|
+
[](https://codeclimate.com/github/patrickdavey/vimwiki_markdown) [](https://travis-ci.org/patrickdavey/vimwiki_markdown)
|
|
3
3
|
|
|
4
4
|
This gem allows vimwiki pages written in (github enhanced) markdown
|
|
5
5
|
to be converted to HTML.
|
|
@@ -53,7 +53,7 @@ module VimwikiMarkdown
|
|
|
53
53
|
@template_default = arguments[TEMPLATE_DEFAULT]
|
|
54
54
|
@template_ext = arguments[TEMPLATE_EXT]
|
|
55
55
|
@root_path = arguments[ROOT_PATH]
|
|
56
|
-
@root_path = "
|
|
56
|
+
@root_path = "./" if @root_path == "-"
|
|
57
57
|
raise "Must be markdown" unless syntax == 'markdown'
|
|
58
58
|
end
|
|
59
59
|
|
data/spec/spec_helper.rb
CHANGED
|
@@ -123,7 +123,7 @@ def wiki_template
|
|
|
123
123
|
<link type="text/css" rel="stylesheet" href="./styles/shThemeDefault.css" />
|
|
124
124
|
|
|
125
125
|
<!-- for testing %ROOT_PATH% substitutions -->
|
|
126
|
-
<link type="text/css" rel="stylesheet" href="%root_path
|
|
126
|
+
<link type="text/css" rel="stylesheet" href="%root_path%rootStyle.css" />
|
|
127
127
|
|
|
128
128
|
<script type="text/javascript" src="./scripts/shCore.js"></script>
|
|
129
129
|
<script type="text/javascript" src="./scripts/shBrushRuby.js"></script>
|
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.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Davey
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -203,6 +203,7 @@ extra_rdoc_files: []
|
|
|
203
203
|
files:
|
|
204
204
|
- ".gitignore"
|
|
205
205
|
- ".rspec"
|
|
206
|
+
- ".travis.yml"
|
|
206
207
|
- Gemfile
|
|
207
208
|
- Guardfile
|
|
208
209
|
- LICENSE.txt
|
|
@@ -244,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
244
245
|
version: '0'
|
|
245
246
|
requirements: []
|
|
246
247
|
rubyforge_project:
|
|
247
|
-
rubygems_version: 2.
|
|
248
|
+
rubygems_version: 2.4.8
|
|
248
249
|
signing_key:
|
|
249
250
|
specification_version: 4
|
|
250
251
|
summary: Converts a github flavoured markdown vimwiki file into html.
|
|
@@ -254,4 +255,3 @@ test_files:
|
|
|
254
255
|
- spec/lib/vimwiki_markdown/vimwiki_link_spec.rb
|
|
255
256
|
- spec/lib/vimwiki_markdown/wiki_body_spec.rb
|
|
256
257
|
- spec/spec_helper.rb
|
|
257
|
-
has_rdoc:
|