qiita_marker 0.23.2.0 → 0.23.2.3
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/LICENSE.txt +19 -17
- data/README.md +29 -1
- data/ext/qiita_marker/autolink.c +57 -10
- data/ext/qiita_marker/core-extensions.c +2 -0
- data/ext/qiita_marker/html.c +13 -0
- data/ext/qiita_marker/inlines.c +17 -5
- data/ext/qiita_marker/qfm.h +22 -0
- data/ext/qiita_marker/qfm_custom_block.c +265 -0
- data/ext/qiita_marker/qfm_custom_block.h +10 -0
- data/ext/qiita_marker/qfm_mention_no_emphasis.c +37 -0
- data/ext/qiita_marker/qfm_mention_no_emphasis.h +8 -0
- data/ext/qiita_marker/qfm_scanners.c +291 -0
- data/ext/qiita_marker/qfm_scanners.h +20 -0
- data/ext/qiita_marker/qfm_scanners.re +50 -0
- data/lib/qiita_marker/config.rb +7 -2
- data/lib/qiita_marker/renderer/html_renderer.rb +4 -0
- data/lib/qiita_marker/version.rb +1 -1
- data/qiita_marker.gemspec +1 -1
- data/test/test_qfm_autolink_class_name.rb +62 -0
- data/test/test_qfm_code_data_metadata.rb +41 -0
- data/test/test_qfm_custom_block.rb +39 -0
- data/test/test_qfm_mention_no_emphasis.rb +60 -0
- metadata +19 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qiita_marker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.23.2.
|
4
|
+
version: 0.23.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Qiita Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -196,6 +196,14 @@ files:
|
|
196
196
|
- ext/qiita_marker/plaintext.c
|
197
197
|
- ext/qiita_marker/plugin.c
|
198
198
|
- ext/qiita_marker/plugin.h
|
199
|
+
- ext/qiita_marker/qfm.h
|
200
|
+
- ext/qiita_marker/qfm_custom_block.c
|
201
|
+
- ext/qiita_marker/qfm_custom_block.h
|
202
|
+
- ext/qiita_marker/qfm_mention_no_emphasis.c
|
203
|
+
- ext/qiita_marker/qfm_mention_no_emphasis.h
|
204
|
+
- ext/qiita_marker/qfm_scanners.c
|
205
|
+
- ext/qiita_marker/qfm_scanners.h
|
206
|
+
- ext/qiita_marker/qfm_scanners.re
|
199
207
|
- ext/qiita_marker/qiita_marker.c
|
200
208
|
- ext/qiita_marker/qiita_marker.h
|
201
209
|
- ext/qiita_marker/references.c
|
@@ -249,6 +257,10 @@ files:
|
|
249
257
|
- test/test_options.rb
|
250
258
|
- test/test_pathological_inputs.rb
|
251
259
|
- test/test_plaintext.rb
|
260
|
+
- test/test_qfm_autolink_class_name.rb
|
261
|
+
- test/test_qfm_code_data_metadata.rb
|
262
|
+
- test/test_qfm_custom_block.rb
|
263
|
+
- test/test_qfm_mention_no_emphasis.rb
|
252
264
|
- test/test_renderer.rb
|
253
265
|
- test/test_smartpunct.rb
|
254
266
|
- test/test_spec.rb
|
@@ -306,6 +318,10 @@ test_files:
|
|
306
318
|
- test/test_options.rb
|
307
319
|
- test/test_pathological_inputs.rb
|
308
320
|
- test/test_plaintext.rb
|
321
|
+
- test/test_qfm_autolink_class_name.rb
|
322
|
+
- test/test_qfm_code_data_metadata.rb
|
323
|
+
- test/test_qfm_custom_block.rb
|
324
|
+
- test/test_qfm_mention_no_emphasis.rb
|
309
325
|
- test/test_renderer.rb
|
310
326
|
- test/test_smartpunct.rb
|
311
327
|
- test/test_spec.rb
|