kramdown-asciidoc 1.0.0.alpha.7 → 1.0.0.alpha.8
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.adoc +11 -0
- data/README.adoc +1 -1
- data/lib/kramdown-asciidoc.rb +1 -0
- data/lib/kramdown-asciidoc/converter.rb +2 -2
- data/lib/kramdown-asciidoc/core_ext/regexp/is_match.rb +3 -0
- data/lib/kramdown-asciidoc/version.rb +1 -1
- data/spec/scenarios/codespan/constrained.adoc +1 -1
- data/spec/scenarios/codespan/constrained.md +1 -1
- data/spec/scenarios/codespan/literal.adoc +2 -0
- data/spec/scenarios/codespan/literal.md +2 -0
- data/spec/scenarios/codespan/unconstrained.adoc +1 -0
- data/spec/scenarios/codespan/unconstrained.md +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec24e69c7ff58e4b915b286679f62ff3b02bdc993efe5951b2289ef117e05305
|
4
|
+
data.tar.gz: c6d2872af018a5ed5efb201fd29d87d89c164502897223f61c0eebabe18faebe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0d0e0bd0fd69bb4f9134784e5bea5d1192a918273d41469bc650bf02d82dc68867f0fae6ddce3fcae434af92bc098b9f0a7d1529c40866c949e5122963de652
|
7
|
+
data.tar.gz: 8d1415772fbe71e934d254e43c067c8573220c1ebaeb0b4f2cca69e4c68e88643b50c6464fbff441c0d955d0f713e80312948a0be19d863ec3a40bf2a19302f4
|
data/CHANGELOG.adoc
CHANGED
@@ -5,6 +5,17 @@
|
|
5
5
|
This document provides a high-level view of the changes to {project-name} by release.
|
6
6
|
For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.
|
7
7
|
|
8
|
+
== 1.0.0.alpha.8 (2018-07-03) - @mojavelinux
|
9
|
+
|
10
|
+
=== Added
|
11
|
+
|
12
|
+
* add support for Ruby 2.3; add to CI matrix
|
13
|
+
|
14
|
+
=== Changed
|
15
|
+
|
16
|
+
* don't escape double hyphen in codespan unless surrounded by spaces or word chars
|
17
|
+
* treat leading specialchar (<, >, or &) as a word character (since it gets converted to a char reference)
|
18
|
+
|
8
19
|
== 1.0.0.alpha.7 (2018-07-02) - @mojavelinux
|
9
20
|
|
10
21
|
=== Added
|
data/README.adoc
CHANGED
data/lib/kramdown-asciidoc.rb
CHANGED
@@ -86,11 +86,11 @@ module Kramdown; module AsciiDoc
|
|
86
86
|
CssPropDelimRx = /\s*;\s*/
|
87
87
|
FullStopRx = /(?<=\.)\p{Blank}+(?!\Z)/
|
88
88
|
MenuRefRx = /^([\p{Word}&].*?)\s>\s([\p{Word}&].*(?:\s>\s|$))+/
|
89
|
-
ReplaceableTextRx = /[-=]>|<[-=]
|
89
|
+
ReplaceableTextRx = /[-=]>|<[-=]| -- |\p{Word}--\p{Word}|\*\*|\.\.\.|&\S+;|\{\p{Word}[\p{Word}-]*\}|\((?:C|R|TM)\)/
|
90
90
|
SmartApostropheRx = /\b’\b/
|
91
91
|
TrailingSpaceRx = / +$/
|
92
92
|
TypographicSymbolRx = /[“”‘’—–…]/
|
93
|
-
WordishRx = /[\p{Word}
|
93
|
+
WordishRx = /[\p{Word};:<>&]/
|
94
94
|
WordRx = /\p{Word}/
|
95
95
|
XmlCommentRx = /\A<!--(.*)-->\Z/m
|
96
96
|
|
@@ -1 +1 @@
|
|
1
|
-
A boolean value can be `true` or `false
|
1
|
+
A boolean value can be `true` or `false` (and sometimes `nil`).
|
@@ -1 +1 @@
|
|
1
|
-
A boolean value can be `true` or `false
|
1
|
+
A boolean value can be `true` or `false` (and sometimes `nil`).
|
@@ -2,6 +2,8 @@ Use the `+<=+` operator to define a version that is less than or equal to a spec
|
|
2
2
|
|
3
3
|
Use `+(start...end)+` to create a sequence that ranges from `+start--end+`, but excludes the last element.
|
4
4
|
|
5
|
+
Use the `--verbose` option to see more output.
|
6
|
+
|
5
7
|
Use an `+<!-- XML comment -->+` to disable or hide markup.
|
6
8
|
|
7
9
|
In AsciiDoc, `+{name}+` is the syntax for an attribute reference.
|
@@ -2,6 +2,8 @@ Use the `<=` operator to define a version that is less than or equal to a specif
|
|
2
2
|
|
3
3
|
Use `(start...end)` to create a sequence that ranges from `start--end`, but excludes the last element.
|
4
4
|
|
5
|
+
Use the `--verbose` option to see more output.
|
6
|
+
|
5
7
|
Use an `<!-- XML comment -->` to disable or hide markup.
|
6
8
|
|
7
9
|
In AsciiDoc, `{name}` is the syntax for an attribute reference.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kramdown-asciidoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.alpha.
|
4
|
+
version: 1.0.0.alpha.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Allen
|
@@ -84,6 +84,7 @@ files:
|
|
84
84
|
- lib/kramdown-asciidoc.rb
|
85
85
|
- lib/kramdown-asciidoc/cli.rb
|
86
86
|
- lib/kramdown-asciidoc/converter.rb
|
87
|
+
- lib/kramdown-asciidoc/core_ext/regexp/is_match.rb
|
87
88
|
- lib/kramdown-asciidoc/version.rb
|
88
89
|
- lib/kramdown-asciidoc/writer.rb
|
89
90
|
- spec/cli_spec.rb
|