kramdown-rfc2629 1.6.33 → 1.6.34
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/bin/kramdown-rfc-clean-svg-ids +5 -1
- data/kramdown-rfc2629.gemspec +1 -1
- data/lib/kramdown-rfc/rexml-formatters-conservative.rb +38 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfdd6b2626b4919b9f19421d90541b9f7ec2cf8862e18c3ae5c8c8ba7bf425ba
|
|
4
|
+
data.tar.gz: 7d5a91368fa1aa42e189fb6b9dccd4fbe4439f07ff11833fb02104bf73bdbd94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b070e6f03fce066242187858977e9a2a6e91ebc12859a6f1571abe3e487681b4fbb85e470c6a52207ec85dcebfce039a8d201bdbe86c70c0af5ddda83250a1f
|
|
7
|
+
data.tar.gz: 6fcc90e3ee7ab1daec870b0b0c704c04108bb6a398a733609ba331bdd0106464623ee6b17a3478c8fab972068b193a9c285b5e7488a866aba888e36e464fd27d
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# -*- coding: utf-8 -*-
|
|
3
3
|
|
|
4
4
|
require 'rexml/document'
|
|
5
|
+
require 'kramdown-rfc/rexml-formatters-conservative'
|
|
5
6
|
require 'kramdown-rfc/svg-id-cleanup'
|
|
6
7
|
|
|
7
8
|
def svg_clean_ids(s)
|
|
@@ -10,7 +11,10 @@ def svg_clean_ids(s)
|
|
|
10
11
|
|
|
11
12
|
svg_id_cleanup(d)
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
tr = REXML::Formatters::Conservative.new
|
|
15
|
+
o = ''
|
|
16
|
+
tr.write(d, o)
|
|
17
|
+
o
|
|
14
18
|
rescue => detail
|
|
15
19
|
warn "*** Can't clean SVG: #{detail}"
|
|
16
20
|
d.to_s
|
data/kramdown-rfc2629.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'kramdown-rfc2629'
|
|
3
|
-
s.version = '1.6.
|
|
3
|
+
s.version = '1.6.34'
|
|
4
4
|
s.summary = "Kramdown extension for generating RFCXML (RFC 799x)."
|
|
5
5
|
s.description = %{An RFCXML (RFC 799x) generating backend for Thomas Leitner's
|
|
6
6
|
"kramdown" markdown parser. Mostly useful for RFC writers.}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
require 'rexml/document'
|
|
2
|
+
|
|
3
|
+
module REXML
|
|
4
|
+
module Formatters
|
|
5
|
+
# The Conservative formatter writes an XML document that parses to an
|
|
6
|
+
# identical document as the source document. This means that no extra
|
|
7
|
+
# whitespace nodes are inserted, and whitespace within text nodes is
|
|
8
|
+
# preserved. Attributes are not sorted.
|
|
9
|
+
class Conservative < Default
|
|
10
|
+
def initialize
|
|
11
|
+
@indentation = 0
|
|
12
|
+
@level = 0
|
|
13
|
+
@ie_hack = false
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
protected
|
|
17
|
+
def write_element( node, output )
|
|
18
|
+
output << "<#{node.expanded_name}"
|
|
19
|
+
|
|
20
|
+
node.attributes.each_attribute do |attr|
|
|
21
|
+
output << " "
|
|
22
|
+
attr.write( output )
|
|
23
|
+
end unless node.attributes.empty?
|
|
24
|
+
|
|
25
|
+
if node.children.empty?
|
|
26
|
+
output << "/"
|
|
27
|
+
else
|
|
28
|
+
output << ">"
|
|
29
|
+
node.children.each { |child|
|
|
30
|
+
write( child, output )
|
|
31
|
+
}
|
|
32
|
+
output << "</#{node.expanded_name}"
|
|
33
|
+
end
|
|
34
|
+
output << ">"
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kramdown-rfc2629
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.34
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carsten Bormann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: kramdown
|
|
@@ -182,6 +182,7 @@ files:
|
|
|
182
182
|
- lib/kramdown-rfc/kdrfc-processor.rb
|
|
183
183
|
- lib/kramdown-rfc/parameterset.rb
|
|
184
184
|
- lib/kramdown-rfc/refxml.rb
|
|
185
|
+
- lib/kramdown-rfc/rexml-formatters-conservative.rb
|
|
185
186
|
- lib/kramdown-rfc/rfc8792.rb
|
|
186
187
|
- lib/kramdown-rfc/svg-id-cleanup.rb
|
|
187
188
|
- lib/kramdown-rfc2629.rb
|