jekyll-paspagon 1.0.4 → 1.0.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/README.md +2 -2
- data/lib/jekyll-paspagon/hooks.rb +1 -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: c672615ee560df9989c4d5893b497a02e76aac97
|
|
4
|
+
data.tar.gz: c14a099943f1767c278b5ea3b590bcf9ebc3a579
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2910bfbb15874b8a2bb62b23dc334d6608c8df76601c9c9256e75740153aa34f815ef5fadd7b662d36a4a019f3187b77d342db6a715519806811eab747793666
|
|
7
|
+
data.tar.gz: c81b355fe7c96a4e3de7160419fe2a0b92fe2735edc53ed2f13101841b601e7ab6aa3e5783ee974e0367c52ac9aa57473c69e50b450e1bd79145b91ae09907ff
|
data/README.md
CHANGED
|
@@ -156,11 +156,11 @@ This command uploads missing or updated paid files to S3 and removes ones which
|
|
|
156
156
|
|
|
157
157
|
## Markdown compatibility
|
|
158
158
|
|
|
159
|
-
jekyll-paspagon uses Pandoc to generate formats other than HTML. The default input format is `markdown_github-hard_line_breaks`. It may be impacted by some site settings like Kramdown’s `hard_wrap`, but the most reliable way of changing it is setting it explicitly in `_config.yml`:
|
|
159
|
+
jekyll-paspagon uses Pandoc to generate formats other than HTML. The default input format is `markdown_github+yaml_metadata_block-hard_line_breaks`. It may be impacted by some site settings like Kramdown’s `hard_wrap`, but the most reliable way of changing it is setting it explicitly in `_config.yml`:
|
|
160
160
|
|
|
161
161
|
```yaml
|
|
162
162
|
pandoc:
|
|
163
|
-
input: markdown_phpextra-fenced_code_blocks+strikeout
|
|
163
|
+
input: markdown_phpextra+yaml_metadata_block-fenced_code_blocks+strikeout
|
|
164
164
|
```
|
|
165
165
|
|
|
166
166
|
For more information, refer to [Pandoc’s documentation on Markdown](http://pandoc.org/README.html#pandocs-markdown).
|
|
@@ -167,7 +167,7 @@ def pandoc_input_format(site)
|
|
|
167
167
|
(site.config['pandoc'] || {})['input'] ||
|
|
168
168
|
begin
|
|
169
169
|
kramdown = site.config['kramdown'] || {}
|
|
170
|
-
format = 'markdown_github'
|
|
170
|
+
format = 'markdown_github+yaml_metadata_block'
|
|
171
171
|
format += '-hard_line_breaks' unless kramdown['hard_wrap']
|
|
172
172
|
format
|
|
173
173
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-paspagon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Krzysztof Jurewicz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi-xattr
|