markdown_it_ruby 0.1.1
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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +171 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Cargo.lock +1255 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +37 -0
- data/Rakefile +22 -0
- data/ext/markdown_it_ruby/Cargo.toml +18 -0
- data/ext/markdown_it_ruby/extconf.rb +6 -0
- data/ext/markdown_it_ruby/src/driver/options.rs +298 -0
- data/ext/markdown_it_ruby/src/driver.rs +56 -0
- data/ext/markdown_it_ruby/src/extensions/heading_level_modification.rs +139 -0
- data/ext/markdown_it_ruby/src/extensions/link_with_target.rs +473 -0
- data/ext/markdown_it_ruby/src/extensions/table_decoration.rs +88 -0
- data/ext/markdown_it_ruby/src/extensions.rs +18 -0
- data/ext/markdown_it_ruby/src/lib.rs +35 -0
- data/lib/markdown_it_ruby/version.rb +5 -0
- data/lib/markdown_it_ruby.rb +15 -0
- data/sig/markdown_it_ruby.rbs +4 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: markdown_it_ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Koji Onishi
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: rb_sys
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 0.9.108
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.9.108
|
26
|
+
description: ''
|
27
|
+
email:
|
28
|
+
- fursich0@gmail.com
|
29
|
+
executables: []
|
30
|
+
extensions:
|
31
|
+
- ext/markdown_it_ruby/Cargo.toml
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".rspec"
|
35
|
+
- ".rubocop.yml"
|
36
|
+
- CODE_OF_CONDUCT.md
|
37
|
+
- Cargo.lock
|
38
|
+
- Cargo.toml
|
39
|
+
- LICENSE.txt
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- ext/markdown_it_ruby/Cargo.toml
|
43
|
+
- ext/markdown_it_ruby/extconf.rb
|
44
|
+
- ext/markdown_it_ruby/src/driver.rs
|
45
|
+
- ext/markdown_it_ruby/src/driver/options.rs
|
46
|
+
- ext/markdown_it_ruby/src/extensions.rs
|
47
|
+
- ext/markdown_it_ruby/src/extensions/heading_level_modification.rs
|
48
|
+
- ext/markdown_it_ruby/src/extensions/link_with_target.rs
|
49
|
+
- ext/markdown_it_ruby/src/extensions/table_decoration.rs
|
50
|
+
- ext/markdown_it_ruby/src/lib.rs
|
51
|
+
- lib/markdown_it_ruby.rb
|
52
|
+
- lib/markdown_it_ruby/version.rb
|
53
|
+
- sig/markdown_it_ruby.rbs
|
54
|
+
homepage: https://github.com/fursich/markdown_it_ruby
|
55
|
+
licenses:
|
56
|
+
- MIT
|
57
|
+
metadata:
|
58
|
+
homepage_uri: https://github.com/fursich/markdown_it_ruby
|
59
|
+
source_code_uri: https://github.com/fursich/markdown_it_ruby
|
60
|
+
rubygems_mfa_required: 'true'
|
61
|
+
rdoc_options: []
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.1.0
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 3.3.11
|
74
|
+
requirements: []
|
75
|
+
rubygems_version: 3.6.9
|
76
|
+
specification_version: 4
|
77
|
+
summary: ruby integration of markdown-it-rust (with custom plugins)
|
78
|
+
test_files: []
|