commonmarker 0.23.10 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +1220 -0
- data/Cargo.toml +7 -0
- data/README.md +217 -170
- data/ext/commonmarker/Cargo.toml +20 -0
- data/ext/commonmarker/extconf.rb +3 -6
- data/ext/commonmarker/src/lib.rs +183 -0
- data/ext/commonmarker/src/node.rs +1115 -0
- data/ext/commonmarker/src/options.rs +165 -0
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +74 -0
- data/ext/commonmarker/src/plugins.rs +3 -0
- data/ext/commonmarker/src/utils.rs +8 -0
- data/lib/commonmarker/config.rb +90 -40
- data/lib/commonmarker/constants.rb +7 -0
- data/lib/commonmarker/extension.rb +14 -0
- data/lib/commonmarker/node/ast.rb +8 -0
- data/lib/commonmarker/node/inspect.rb +14 -4
- data/lib/commonmarker/node.rb +29 -47
- data/lib/commonmarker/renderer.rb +1 -127
- data/lib/commonmarker/utils.rb +22 -0
- data/lib/commonmarker/version.rb +2 -2
- data/lib/commonmarker.rb +27 -25
- metadata +38 -186
- data/Rakefile +0 -109
- data/bin/commonmarker +0 -118
- data/commonmarker.gemspec +0 -38
- data/ext/commonmarker/arena.c +0 -104
- data/ext/commonmarker/autolink.c +0 -508
- data/ext/commonmarker/autolink.h +0 -8
- data/ext/commonmarker/blocks.c +0 -1622
- data/ext/commonmarker/buffer.c +0 -278
- data/ext/commonmarker/buffer.h +0 -116
- data/ext/commonmarker/case_fold_switch.inc +0 -4327
- data/ext/commonmarker/chunk.h +0 -135
- data/ext/commonmarker/cmark-gfm-core-extensions.h +0 -54
- data/ext/commonmarker/cmark-gfm-extension_api.h +0 -737
- data/ext/commonmarker/cmark-gfm-extensions_export.h +0 -42
- data/ext/commonmarker/cmark-gfm.h +0 -833
- data/ext/commonmarker/cmark-gfm_export.h +0 -42
- data/ext/commonmarker/cmark-gfm_version.h +0 -7
- data/ext/commonmarker/cmark.c +0 -55
- data/ext/commonmarker/cmark_ctype.c +0 -44
- data/ext/commonmarker/cmark_ctype.h +0 -33
- data/ext/commonmarker/commonmark.c +0 -514
- data/ext/commonmarker/commonmarker.c +0 -1308
- data/ext/commonmarker/commonmarker.h +0 -16
- data/ext/commonmarker/config.h +0 -76
- data/ext/commonmarker/core-extensions.c +0 -27
- data/ext/commonmarker/entities.inc +0 -2138
- data/ext/commonmarker/ext_scanners.c +0 -879
- data/ext/commonmarker/ext_scanners.h +0 -24
- data/ext/commonmarker/footnotes.c +0 -63
- data/ext/commonmarker/footnotes.h +0 -27
- data/ext/commonmarker/houdini.h +0 -57
- data/ext/commonmarker/houdini_href_e.c +0 -100
- data/ext/commonmarker/houdini_html_e.c +0 -66
- data/ext/commonmarker/houdini_html_u.c +0 -149
- data/ext/commonmarker/html.c +0 -502
- data/ext/commonmarker/html.h +0 -27
- data/ext/commonmarker/inlines.c +0 -1788
- data/ext/commonmarker/inlines.h +0 -29
- data/ext/commonmarker/iterator.c +0 -159
- data/ext/commonmarker/iterator.h +0 -26
- data/ext/commonmarker/latex.c +0 -468
- data/ext/commonmarker/linked_list.c +0 -37
- data/ext/commonmarker/man.c +0 -274
- data/ext/commonmarker/map.c +0 -129
- data/ext/commonmarker/map.h +0 -44
- data/ext/commonmarker/node.c +0 -1045
- data/ext/commonmarker/node.h +0 -167
- data/ext/commonmarker/parser.h +0 -59
- data/ext/commonmarker/plaintext.c +0 -218
- data/ext/commonmarker/plugin.c +0 -36
- data/ext/commonmarker/plugin.h +0 -34
- data/ext/commonmarker/references.c +0 -43
- data/ext/commonmarker/references.h +0 -26
- data/ext/commonmarker/registry.c +0 -63
- data/ext/commonmarker/registry.h +0 -24
- data/ext/commonmarker/render.c +0 -213
- data/ext/commonmarker/render.h +0 -62
- data/ext/commonmarker/scanners.c +0 -14056
- data/ext/commonmarker/scanners.h +0 -70
- data/ext/commonmarker/scanners.re +0 -341
- data/ext/commonmarker/strikethrough.c +0 -167
- data/ext/commonmarker/strikethrough.h +0 -9
- data/ext/commonmarker/syntax_extension.c +0 -149
- data/ext/commonmarker/syntax_extension.h +0 -34
- data/ext/commonmarker/table.c +0 -917
- data/ext/commonmarker/table.h +0 -12
- data/ext/commonmarker/tagfilter.c +0 -60
- data/ext/commonmarker/tagfilter.h +0 -8
- data/ext/commonmarker/tasklist.c +0 -156
- data/ext/commonmarker/tasklist.h +0 -8
- data/ext/commonmarker/utf8.c +0 -317
- data/ext/commonmarker/utf8.h +0 -35
- data/ext/commonmarker/xml.c +0 -182
- data/lib/commonmarker/renderer/html_renderer.rb +0 -256
@@ -0,0 +1,165 @@
|
|
1
|
+
use std::borrow::Cow;
|
2
|
+
|
3
|
+
use comrak::ComrakOptions;
|
4
|
+
|
5
|
+
use magnus::value::ReprValue;
|
6
|
+
use magnus::TryConvert;
|
7
|
+
use magnus::{class, r_hash::ForEach, Error, RHash, Symbol, Value};
|
8
|
+
|
9
|
+
use crate::utils::try_convert_string;
|
10
|
+
|
11
|
+
const PARSE_SMART: &str = "smart";
|
12
|
+
const PARSE_DEFAULT_INFO_STRING: &str = "default_info_string";
|
13
|
+
const PARSE_RELAXED_AUTOLINKS: &str = "relaxed_autolinks";
|
14
|
+
|
15
|
+
fn iterate_parse_options(comrak_options: &mut ComrakOptions, options_hash: RHash) {
|
16
|
+
options_hash
|
17
|
+
.foreach(|key: Symbol, value: Value| {
|
18
|
+
match key.name() {
|
19
|
+
Ok(Cow::Borrowed(PARSE_SMART)) => {
|
20
|
+
comrak_options.parse.smart = TryConvert::try_convert(value)?;
|
21
|
+
}
|
22
|
+
Ok(Cow::Borrowed(PARSE_DEFAULT_INFO_STRING)) => {
|
23
|
+
comrak_options.parse.default_info_string = try_convert_string(value);
|
24
|
+
}
|
25
|
+
Ok(Cow::Borrowed(PARSE_RELAXED_AUTOLINKS)) => {
|
26
|
+
comrak_options.parse.relaxed_autolinks = TryConvert::try_convert(value)?;
|
27
|
+
}
|
28
|
+
_ => {}
|
29
|
+
}
|
30
|
+
Ok(ForEach::Continue)
|
31
|
+
})
|
32
|
+
.unwrap();
|
33
|
+
}
|
34
|
+
|
35
|
+
const RENDER_HARDBREAKS: &str = "hardbreaks";
|
36
|
+
const RENDER_GITHUB_PRE_LANG: &str = "github_pre_lang";
|
37
|
+
const RENDER_WIDTH: &str = "width";
|
38
|
+
const RENDER_UNSAFE: &str = "unsafe";
|
39
|
+
const RENDER_ESCAPE: &str = "escape";
|
40
|
+
const RENDER_SOURCEPOS: &str = "sourcepos";
|
41
|
+
const RENDER_ESCAPED_CHAR_SPANS: &str = "escaped_char_spans";
|
42
|
+
|
43
|
+
fn iterate_render_options(comrak_options: &mut ComrakOptions, options_hash: RHash) {
|
44
|
+
options_hash
|
45
|
+
.foreach(|key: Symbol, value: Value| {
|
46
|
+
match key.name() {
|
47
|
+
Ok(Cow::Borrowed(RENDER_HARDBREAKS)) => {
|
48
|
+
comrak_options.render.hardbreaks = TryConvert::try_convert(value)?;
|
49
|
+
}
|
50
|
+
Ok(Cow::Borrowed(RENDER_GITHUB_PRE_LANG)) => {
|
51
|
+
comrak_options.render.github_pre_lang = TryConvert::try_convert(value)?;
|
52
|
+
}
|
53
|
+
Ok(Cow::Borrowed(RENDER_WIDTH)) => {
|
54
|
+
comrak_options.render.width = TryConvert::try_convert(value)?;
|
55
|
+
}
|
56
|
+
Ok(Cow::Borrowed(RENDER_UNSAFE)) => {
|
57
|
+
comrak_options.render.unsafe_ = TryConvert::try_convert(value)?;
|
58
|
+
}
|
59
|
+
Ok(Cow::Borrowed(RENDER_ESCAPE)) => {
|
60
|
+
comrak_options.render.escape = TryConvert::try_convert(value)?;
|
61
|
+
}
|
62
|
+
Ok(Cow::Borrowed(RENDER_SOURCEPOS)) => {
|
63
|
+
comrak_options.render.sourcepos = TryConvert::try_convert(value)?;
|
64
|
+
}
|
65
|
+
Ok(Cow::Borrowed(RENDER_ESCAPED_CHAR_SPANS)) => {
|
66
|
+
comrak_options.render.escaped_char_spans = TryConvert::try_convert(value)?;
|
67
|
+
}
|
68
|
+
_ => {}
|
69
|
+
}
|
70
|
+
Ok(ForEach::Continue)
|
71
|
+
})
|
72
|
+
.unwrap();
|
73
|
+
}
|
74
|
+
|
75
|
+
const EXTENSION_STRIKETHROUGH: &str = "strikethrough";
|
76
|
+
const EXTENSION_TAGFILTER: &str = "tagfilter";
|
77
|
+
const EXTENSION_TABLE: &str = "table";
|
78
|
+
const EXTENSION_AUTOLINK: &str = "autolink";
|
79
|
+
const EXTENSION_TASKLIST: &str = "tasklist";
|
80
|
+
const EXTENSION_SUPERSCRIPT: &str = "superscript";
|
81
|
+
const EXTENSION_HEADER_IDS: &str = "header_ids";
|
82
|
+
const EXTENSION_FOOTNOTES: &str = "footnotes";
|
83
|
+
const EXTENSION_DESCRIPTION_LISTS: &str = "description_lists";
|
84
|
+
const EXTENSION_FRONT_MATTER_DELIMITER: &str = "front_matter_delimiter";
|
85
|
+
const EXTENSION_SHORTCODES: &str = "shortcodes";
|
86
|
+
const EXTENSION_MULTILINE_BLOCK_QUOTES: &str = "multiline_block_quotes";
|
87
|
+
const EXTENSION_MATH_DOLLARS: &str = "math_dollars";
|
88
|
+
const EXTENSION_MATH_CODE: &str = "math_code";
|
89
|
+
|
90
|
+
fn iterate_extension_options(comrak_options: &mut ComrakOptions, options_hash: RHash) {
|
91
|
+
options_hash
|
92
|
+
.foreach(|key: Symbol, value: Value| {
|
93
|
+
match key.name() {
|
94
|
+
Ok(Cow::Borrowed(EXTENSION_STRIKETHROUGH)) => {
|
95
|
+
comrak_options.extension.strikethrough = TryConvert::try_convert(value)?;
|
96
|
+
}
|
97
|
+
Ok(Cow::Borrowed(EXTENSION_TAGFILTER)) => {
|
98
|
+
comrak_options.extension.tagfilter = TryConvert::try_convert(value)?;
|
99
|
+
}
|
100
|
+
Ok(Cow::Borrowed(EXTENSION_TABLE)) => {
|
101
|
+
comrak_options.extension.table = TryConvert::try_convert(value)?;
|
102
|
+
}
|
103
|
+
Ok(Cow::Borrowed(EXTENSION_AUTOLINK)) => {
|
104
|
+
comrak_options.extension.autolink = TryConvert::try_convert(value)?;
|
105
|
+
}
|
106
|
+
Ok(Cow::Borrowed(EXTENSION_TASKLIST)) => {
|
107
|
+
comrak_options.extension.tasklist = TryConvert::try_convert(value)?;
|
108
|
+
}
|
109
|
+
Ok(Cow::Borrowed(EXTENSION_SUPERSCRIPT)) => {
|
110
|
+
comrak_options.extension.superscript = TryConvert::try_convert(value)?;
|
111
|
+
}
|
112
|
+
Ok(Cow::Borrowed(EXTENSION_HEADER_IDS)) => {
|
113
|
+
comrak_options.extension.header_ids = try_convert_string(value);
|
114
|
+
}
|
115
|
+
Ok(Cow::Borrowed(EXTENSION_FOOTNOTES)) => {
|
116
|
+
comrak_options.extension.footnotes = TryConvert::try_convert(value)?;
|
117
|
+
}
|
118
|
+
Ok(Cow::Borrowed(EXTENSION_DESCRIPTION_LISTS)) => {
|
119
|
+
comrak_options.extension.description_lists = TryConvert::try_convert(value)?;
|
120
|
+
}
|
121
|
+
Ok(Cow::Borrowed(EXTENSION_FRONT_MATTER_DELIMITER)) => {
|
122
|
+
if let Some(option) = try_convert_string(value) {
|
123
|
+
if !option.is_empty() {
|
124
|
+
comrak_options.extension.front_matter_delimiter = Some(option);
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}
|
128
|
+
Ok(Cow::Borrowed(EXTENSION_SHORTCODES)) => {
|
129
|
+
comrak_options.extension.shortcodes = TryConvert::try_convert(value)?;
|
130
|
+
}
|
131
|
+
Ok(Cow::Borrowed(EXTENSION_MULTILINE_BLOCK_QUOTES)) => {
|
132
|
+
comrak_options.extension.multiline_block_quotes =
|
133
|
+
TryConvert::try_convert(value)?;
|
134
|
+
}
|
135
|
+
Ok(Cow::Borrowed(EXTENSION_MATH_DOLLARS)) => {
|
136
|
+
comrak_options.extension.math_dollars = TryConvert::try_convert(value)?;
|
137
|
+
}
|
138
|
+
Ok(Cow::Borrowed(EXTENSION_MATH_CODE)) => {
|
139
|
+
comrak_options.extension.math_code = TryConvert::try_convert(value)?;
|
140
|
+
}
|
141
|
+
_ => {}
|
142
|
+
}
|
143
|
+
Ok(ForEach::Continue)
|
144
|
+
})
|
145
|
+
.unwrap();
|
146
|
+
}
|
147
|
+
|
148
|
+
pub fn iterate_options_hash(
|
149
|
+
comrak_options: &mut ComrakOptions,
|
150
|
+
key: Symbol,
|
151
|
+
value: RHash,
|
152
|
+
) -> Result<ForEach, Error> {
|
153
|
+
assert!(value.is_kind_of(class::hash()));
|
154
|
+
|
155
|
+
if key.name().unwrap() == "parse" {
|
156
|
+
iterate_parse_options(comrak_options, value);
|
157
|
+
}
|
158
|
+
if key.name().unwrap() == "render" {
|
159
|
+
iterate_render_options(comrak_options, value);
|
160
|
+
}
|
161
|
+
if key.name().unwrap() == "extension" {
|
162
|
+
iterate_extension_options(comrak_options, value);
|
163
|
+
}
|
164
|
+
Ok(ForEach::Continue)
|
165
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
use std::path::PathBuf;
|
2
|
+
|
3
|
+
use magnus::value::ReprValue;
|
4
|
+
use magnus::{RHash, Symbol, TryConvert, Value};
|
5
|
+
|
6
|
+
use crate::EMPTY_STR;
|
7
|
+
|
8
|
+
pub const SYNTAX_HIGHLIGHTER_PLUGIN_THEME_KEY: &str = "theme";
|
9
|
+
pub const SYNTAX_HIGHLIGHTER_PLUGIN_PATH_KEY: &str = "path";
|
10
|
+
|
11
|
+
pub fn fetch_syntax_highlighter_theme(value: Value) -> Result<Option<String>, magnus::Error> {
|
12
|
+
if value.is_nil() {
|
13
|
+
// `syntax_highlighter: nil`
|
14
|
+
return Ok(None);
|
15
|
+
}
|
16
|
+
|
17
|
+
let syntax_highlighter_plugin: RHash = match TryConvert::try_convert(value) {
|
18
|
+
Ok(plugin) => plugin, // `syntax_highlighter: { theme: "<something>" }`
|
19
|
+
Err(e) => {
|
20
|
+
// not a hash!
|
21
|
+
return Err(e);
|
22
|
+
}
|
23
|
+
};
|
24
|
+
|
25
|
+
if syntax_highlighter_plugin.is_nil() || syntax_highlighter_plugin.is_empty() {
|
26
|
+
return Err(magnus::Error::new(
|
27
|
+
magnus::exception::type_error(),
|
28
|
+
"theme cannot be blank hash",
|
29
|
+
));
|
30
|
+
}
|
31
|
+
|
32
|
+
let theme_key = Symbol::new(SYNTAX_HIGHLIGHTER_PLUGIN_THEME_KEY);
|
33
|
+
|
34
|
+
match syntax_highlighter_plugin.get(theme_key) {
|
35
|
+
Some(theme) => {
|
36
|
+
if theme.is_nil() {
|
37
|
+
return Err(magnus::Error::new(
|
38
|
+
magnus::exception::type_error(),
|
39
|
+
"theme cannot be nil",
|
40
|
+
));
|
41
|
+
}
|
42
|
+
Ok(TryConvert::try_convert(theme)?)
|
43
|
+
}
|
44
|
+
None => {
|
45
|
+
// `syntax_highlighter: { theme: nil }`
|
46
|
+
Ok(None)
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
pub fn fetch_syntax_highlighter_path(value: Value) -> Result<PathBuf, magnus::Error> {
|
52
|
+
if value.is_nil() {
|
53
|
+
// `syntax_highlighter: nil`
|
54
|
+
return Ok(PathBuf::from(EMPTY_STR));
|
55
|
+
}
|
56
|
+
|
57
|
+
let syntax_highlighter_plugin: RHash = TryConvert::try_convert(value)?;
|
58
|
+
let path_key = Symbol::new(SYNTAX_HIGHLIGHTER_PLUGIN_PATH_KEY);
|
59
|
+
|
60
|
+
match syntax_highlighter_plugin.get(path_key) {
|
61
|
+
Some(path) => {
|
62
|
+
if path.is_nil() {
|
63
|
+
// `syntax_highlighter: { path: nil }`
|
64
|
+
return Ok(PathBuf::from(EMPTY_STR));
|
65
|
+
}
|
66
|
+
let val: String = TryConvert::try_convert(path)?;
|
67
|
+
Ok(PathBuf::from(val))
|
68
|
+
}
|
69
|
+
None => {
|
70
|
+
// `syntax_highlighter: { }`
|
71
|
+
Ok(PathBuf::from(EMPTY_STR))
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
data/lib/commonmarker/config.rb
CHANGED
@@ -1,54 +1,104 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module
|
4
|
-
# For Ruby::Enum, these must be classes, not modules
|
3
|
+
module Commonmarker
|
5
4
|
module Config
|
6
|
-
#
|
7
|
-
|
5
|
+
# For details, see
|
6
|
+
# https://github.com/kivikakk/comrak/blob/162ef9354deb2c9b4a4e05be495aa372ba5bb696/src/main.rs#L201
|
7
|
+
OPTIONS = {
|
8
8
|
parse: {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
VALIDATE_UTF8: (1 << 9),
|
13
|
-
SMART: (1 << 10),
|
14
|
-
LIBERAL_HTML_TAG: (1 << 12),
|
15
|
-
FOOTNOTES: (1 << 13),
|
16
|
-
STRIKETHROUGH_DOUBLE_TILDE: (1 << 14),
|
9
|
+
smart: false,
|
10
|
+
default_info_string: "",
|
11
|
+
relaxed_autolinks: false,
|
17
12
|
}.freeze,
|
18
13
|
render: {
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
GITHUB_PRE_LANG: (1 << 11),
|
27
|
-
LIBERAL_HTML_TAG: (1 << 12),
|
28
|
-
FOOTNOTES: (1 << 13),
|
29
|
-
STRIKETHROUGH_DOUBLE_TILDE: (1 << 14),
|
30
|
-
TABLE_PREFER_STYLE_ATTRIBUTES: (1 << 15),
|
31
|
-
FULL_INFO_STRING: (1 << 16),
|
14
|
+
hardbreaks: true,
|
15
|
+
github_pre_lang: true,
|
16
|
+
width: 80,
|
17
|
+
unsafe: false,
|
18
|
+
escape: false,
|
19
|
+
sourcepos: false,
|
20
|
+
escaped_char_spans: true,
|
32
21
|
}.freeze,
|
33
|
-
|
22
|
+
extension: {
|
23
|
+
strikethrough: true,
|
24
|
+
tagfilter: true,
|
25
|
+
table: true,
|
26
|
+
autolink: true,
|
27
|
+
tasklist: true,
|
28
|
+
superscript: false,
|
29
|
+
header_ids: "",
|
30
|
+
footnotes: false,
|
31
|
+
description_lists: false,
|
32
|
+
front_matter_delimiter: "",
|
33
|
+
shortcodes: true,
|
34
|
+
multiline_block_quotes: false,
|
35
|
+
math_dollars: false,
|
36
|
+
math_code: false,
|
37
|
+
},
|
38
|
+
format: [:html].freeze,
|
34
39
|
}.freeze
|
35
40
|
|
41
|
+
PLUGINS = {
|
42
|
+
syntax_highlighter: {
|
43
|
+
theme: "base16-ocean.dark",
|
44
|
+
path: "",
|
45
|
+
},
|
46
|
+
}
|
47
|
+
|
36
48
|
class << self
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
49
|
+
include Commonmarker::Utils
|
50
|
+
|
51
|
+
def merged_with_defaults(options)
|
52
|
+
Commonmarker::Config::OPTIONS.merge(process_options(options))
|
53
|
+
end
|
54
|
+
|
55
|
+
def process_options(options)
|
56
|
+
{
|
57
|
+
parse: process_parse_options(options[:parse]),
|
58
|
+
render: process_render_options(options[:render]),
|
59
|
+
extension: process_extension_options(options[:extension]),
|
60
|
+
}
|
61
|
+
end
|
62
|
+
|
63
|
+
def process_plugins(plugins)
|
64
|
+
{
|
65
|
+
syntax_highlighter: process_syntax_highlighter_plugin(plugins&.fetch(:syntax_highlighter, nil)),
|
66
|
+
}
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
[:parse, :render, :extension].each do |type|
|
71
|
+
define_singleton_method :"process_#{type}_options" do |option|
|
72
|
+
Commonmarker::Config::OPTIONS[type].each_with_object({}) do |(key, value), hash|
|
73
|
+
if option.nil? # option not provided, go for the default
|
74
|
+
hash[key] = value
|
75
|
+
next
|
76
|
+
end
|
77
|
+
|
78
|
+
# option explicitly not included, remove it
|
79
|
+
next if option[key].nil?
|
80
|
+
|
81
|
+
hash[key] = fetch_kv(option, key, value, type)
|
48
82
|
end
|
49
|
-
rescue KeyError => e
|
50
|
-
raise TypeError, "option ':#{e.key}' does not exist for #{name}::OPTS[:#{type}]"
|
51
83
|
end
|
52
|
-
|
84
|
+
end
|
85
|
+
|
86
|
+
[:syntax_highlighter].each do |type|
|
87
|
+
define_singleton_method :"process_#{type}_plugin" do |plugin|
|
88
|
+
return if plugin.nil? # plugin explicitly nil, remove it
|
89
|
+
|
90
|
+
Commonmarker::Config::PLUGINS[type].each_with_object({}) do |(key, value), hash|
|
91
|
+
if plugin.nil? # option not provided, go for the default
|
92
|
+
hash[key] = value
|
93
|
+
next
|
94
|
+
end
|
95
|
+
|
96
|
+
# option explicitly not included, remove it
|
97
|
+
next if plugin[key].nil?
|
98
|
+
|
99
|
+
hash[key] = fetch_kv(plugin, key, value, type)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
53
103
|
end
|
54
104
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
begin
|
4
|
+
# native precompiled gems package shared libraries in <gem_dir>/lib/commonmarker/<ruby_version>
|
5
|
+
# load the precompiled extension file
|
6
|
+
ruby_version = /\d+\.\d+/.match(RUBY_VERSION)
|
7
|
+
require_relative "#{ruby_version}/commonmarker"
|
8
|
+
rescue LoadError
|
9
|
+
# fall back to the extension compiled upon installation.
|
10
|
+
# use "require" instead of "require_relative" because non-native gems will place C extension files
|
11
|
+
# in Gem::BasicSpecification#extension_dir after compilation (during normal installation), which
|
12
|
+
# is in $LOAD_PATH but not necessarily relative to this file (see nokogiri#2300)
|
13
|
+
require "commonmarker/commonmarker"
|
14
|
+
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
require "pp"
|
4
4
|
|
5
|
-
module
|
5
|
+
module Commonmarker
|
6
6
|
class Node
|
7
7
|
module Inspect
|
8
8
|
PP_INDENT_SIZE = 2
|
@@ -16,9 +16,19 @@ module CommonMarker
|
|
16
16
|
printer.group(PP_INDENT_SIZE, "#<#{self.class}(#{type}):", ">") do
|
17
17
|
printer.breakable
|
18
18
|
|
19
|
-
attrs = [
|
19
|
+
attrs = [
|
20
|
+
:source_position,
|
21
|
+
:string_content,
|
22
|
+
:url,
|
23
|
+
:title,
|
24
|
+
:header_level,
|
25
|
+
:list_type,
|
26
|
+
:list_start,
|
27
|
+
:list_tight,
|
28
|
+
:fence_info,
|
29
|
+
].filter_map do |name|
|
20
30
|
[name, __send__(name)]
|
21
|
-
rescue
|
31
|
+
rescue StandardError
|
22
32
|
nil
|
23
33
|
end.compact
|
24
34
|
|
@@ -34,7 +44,7 @@ module CommonMarker
|
|
34
44
|
node = first_child
|
35
45
|
while node
|
36
46
|
children << node
|
37
|
-
node = node.
|
47
|
+
node = node.next_sibling
|
38
48
|
end
|
39
49
|
printer.text("children=")
|
40
50
|
printer.pp(children)
|
data/lib/commonmarker/node.rb
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "commonmarker/node/ast"
|
3
4
|
require "commonmarker/node/inspect"
|
4
5
|
|
5
|
-
module
|
6
|
+
module Commonmarker
|
6
7
|
class Node
|
7
8
|
include Enumerable
|
8
9
|
include Inspect
|
@@ -19,65 +20,46 @@ module CommonMarker
|
|
19
20
|
end
|
20
21
|
end
|
21
22
|
|
22
|
-
# Public:
|
23
|
-
|
24
|
-
|
25
|
-
# extensions - An {Array of Symbol}s indicating the extensions to use
|
26
|
-
#
|
27
|
-
# Returns a {String}.
|
28
|
-
def to_html(options = :DEFAULT, extensions = [])
|
29
|
-
opts = Config.process_options(options, :render)
|
30
|
-
_render_html(opts, extensions).force_encoding("utf-8")
|
31
|
-
end
|
23
|
+
# Public: Iterate over the children (if any) of the current pointer.
|
24
|
+
def each
|
25
|
+
return enum_for(:each) unless block_given?
|
32
26
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
opts = Config.process_options(options, :render)
|
40
|
-
_render_xml(opts).force_encoding("utf-8")
|
27
|
+
child = first_child
|
28
|
+
while child
|
29
|
+
next_child = child.next_sibling
|
30
|
+
yield child
|
31
|
+
child = next_child
|
32
|
+
end
|
41
33
|
end
|
42
34
|
|
43
|
-
# Public:
|
35
|
+
# Public: Converts a node to an HTML string.
|
44
36
|
#
|
45
|
-
# options - A {
|
46
|
-
#
|
37
|
+
# options - A {Hash} of render, parse, and extension options to transform the text.
|
38
|
+
# plugins - A {Hash} of additional plugins.
|
47
39
|
#
|
48
|
-
# Returns a {String}.
|
49
|
-
def
|
50
|
-
|
51
|
-
|
40
|
+
# Returns a {String} of HTML.
|
41
|
+
def to_html(options: Commonmarker::Config::OPTIONS, plugins: Commonmarker::Config::PLUGINS)
|
42
|
+
raise TypeError, "options must be a Hash; got a #{options.class}!" unless options.is_a?(Hash)
|
43
|
+
|
44
|
+
opts = Config.process_options(options)
|
45
|
+
plugins = Config.process_plugins(plugins)
|
46
|
+
|
47
|
+
node_to_html(options: opts, plugins: plugins).force_encoding("utf-8")
|
52
48
|
end
|
53
49
|
|
54
|
-
# Public: Convert the node to a
|
50
|
+
# Public: Convert the node to a CommonMark string.
|
55
51
|
#
|
56
52
|
# options - A {Symbol} or {Array of Symbol}s indicating the render options
|
57
|
-
#
|
53
|
+
# plugins - A {Hash} of additional plugins.
|
58
54
|
#
|
59
55
|
# Returns a {String}.
|
60
|
-
def
|
61
|
-
|
62
|
-
_render_plaintext(opts, width).force_encoding("utf-8")
|
63
|
-
end
|
64
|
-
|
65
|
-
# Public: Iterate over the children (if any) of the current pointer.
|
66
|
-
def each
|
67
|
-
return enum_for(:each) unless block_given?
|
56
|
+
def to_commonmark(options: Commonmarker::Config::OPTIONS, plugins: Commonmarker::Config::PLUGINS)
|
57
|
+
raise TypeError, "options must be a Hash; got a #{options.class}!" unless options.is_a?(Hash)
|
68
58
|
|
69
|
-
|
70
|
-
|
71
|
-
nextchild = child.next
|
72
|
-
yield child
|
73
|
-
child = nextchild
|
74
|
-
end
|
75
|
-
end
|
59
|
+
opts = Config.process_options(options)
|
60
|
+
plugins = Config.process_plugins(plugins)
|
76
61
|
|
77
|
-
|
78
|
-
def each_child(&block)
|
79
|
-
warn("[DEPRECATION] `each_child` is deprecated. Please use `each` instead.")
|
80
|
-
each(&block)
|
62
|
+
node_to_commonmark(options: opts, plugins: plugins).force_encoding("utf-8")
|
81
63
|
end
|
82
64
|
end
|
83
65
|
end
|