markdown_exec 1.8.9 → 2.0.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 +4 -4
- data/.rubocop.yml +5 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +2 -8
- data/bin/tab_completion.sh +11 -3
- data/examples/colors.md +41 -19
- data/examples/document_options.md +8 -0
- data/examples/duplicate_block.md +5 -8
- data/examples/import0.md +3 -5
- data/examples/import1.md +1 -1
- data/examples/include.md +16 -10
- data/examples/indent.md +2 -0
- data/examples/index.md +68 -0
- data/examples/linked.md +31 -0
- data/examples/llm.md +54 -0
- data/lib/find_files.rb +1 -2
- data/lib/hash_delegator.rb +483 -207
- data/lib/input_sequencer.rb +229 -0
- data/lib/link_history.rb +11 -5
- data/lib/markdown_exec/version.rb +1 -1
- data/lib/markdown_exec.rb +4 -6
- data/lib/mdoc.rb +7 -7
- data/lib/menu.src.yml +60 -11
- data/lib/menu.yml +56 -15
- metadata +6 -3
- data/examples/infile_config.md +0 -10
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown_exec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fareed Stevenson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clipboard
|
@@ -114,16 +114,18 @@ files:
|
|
114
114
|
- bin/tab_completion.sh
|
115
115
|
- bin/tab_completion.sh.erb
|
116
116
|
- examples/colors.md
|
117
|
+
- examples/document_options.md
|
117
118
|
- examples/duplicate_block.md
|
118
119
|
- examples/import0.md
|
119
120
|
- examples/import1.md
|
120
121
|
- examples/include.md
|
121
122
|
- examples/indent.md
|
122
|
-
- examples/
|
123
|
+
- examples/index.md
|
123
124
|
- examples/linked.md
|
124
125
|
- examples/linked1.md
|
125
126
|
- examples/linked2.md
|
126
127
|
- examples/linked3.md
|
128
|
+
- examples/llm.md
|
127
129
|
- examples/load1.sh
|
128
130
|
- examples/load2.sh
|
129
131
|
- examples/nickname.md
|
@@ -152,6 +154,7 @@ files:
|
|
152
154
|
- lib/fout.rb
|
153
155
|
- lib/hash.rb
|
154
156
|
- lib/hash_delegator.rb
|
157
|
+
- lib/input_sequencer.rb
|
155
158
|
- lib/link_history.rb
|
156
159
|
- lib/markdown_exec.rb
|
157
160
|
- lib/markdown_exec/version.rb
|