markly 0.9.1 → 0.11.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db168abe771c0279e6687eb0fcbd8ea0c1c8454d06230cdf88ce094266273ed7
4
- data.tar.gz: 365893f4cbb75de4481e5c72f48f4d47dc148bbed3c073c4dbc7b271104a89c8
3
+ metadata.gz: 43375fea8b85dacafc8695a8f8546d0455e700e3892df323885d1bc79ad52b33
4
+ data.tar.gz: a28cc4103041dc495b4688ab322869f2b5ecba86d8fc2e270dfc1daa280a78bb
5
5
  SHA512:
6
- metadata.gz: cfdecf2a93c7fa96b6a35c42340bf64dcf52c4ab1490f95dacf380da91c20ecee6983e029c6e51b1ba3684f4fe2d9731fdd48582b3bbaaa9b9edb35a366748c4
7
- data.tar.gz: 39b9bcb8adb15d92dc91546ddf0550688796b6663ed4a18c4eafd9974870e801207813fcc55027b125be637bd3dbc9897daa6dbf200b95512c818f76e2b4ee59
6
+ metadata.gz: 26ef4ee817faa860607cc631b891502070d200c63563c5f929c888f86d1c529741dc4f350ff7333748f427482e61f572aa4c73cf440ddf6ef70273f056d6eaf3
7
+ data.tar.gz: a28eafe5dbc4b175efbac7ee04c16f9b29b90002f14e4ff3b1c8fa646d807b603fd4f0ab6db75ea9f2489942bb17c6547ffd4a3c6aff3baefba6412fdc9fcdba
checksums.yaml.gz.sig CHANGED
Binary file
data/ext/markly/markly.c CHANGED
@@ -13,6 +13,8 @@ static VALUE rb_Markly_Node;
13
13
  static VALUE rb_Markly_Parser;
14
14
 
15
15
  static VALUE sym_document;
16
+ static VALUE sym_custom_block;
17
+ static VALUE sym_custom_inline;
16
18
  static VALUE sym_blockquote;
17
19
  static VALUE sym_list;
18
20
  static VALUE sym_list_item;
@@ -188,6 +190,7 @@ static VALUE rb_Markly_Parser_parse(VALUE self, VALUE text) {
188
190
  * type - A {Symbol} representing the node to be created. Must be one of the
189
191
  * following:
190
192
  * - `:document`
193
+ * - `:custom`
191
194
  * - `:blockquote`
192
195
  * - `:list`
193
196
  * - `:list_item`
@@ -214,6 +217,10 @@ static VALUE rb_node_new(VALUE self, VALUE type) {
214
217
 
215
218
  if (type == sym_document)
216
219
  node_type = CMARK_NODE_DOCUMENT;
220
+ else if (type == sym_custom_block)
221
+ node_type = CMARK_NODE_CUSTOM_BLOCK;
222
+ else if (type == sym_custom_inline)
223
+ node_type = CMARK_NODE_CUSTOM_INLINE;
217
224
  else if (type == sym_blockquote)
218
225
  node_type = CMARK_NODE_BLOCK_QUOTE;
219
226
  else if (type == sym_list)
@@ -346,6 +353,12 @@ static VALUE rb_node_get_type(VALUE self) {
346
353
  case CMARK_NODE_DOCUMENT:
347
354
  symbol = sym_document;
348
355
  break;
356
+ case CMARK_NODE_CUSTOM_BLOCK:
357
+ symbol = sym_custom_block;
358
+ break;
359
+ case CMARK_NODE_CUSTOM_INLINE:
360
+ symbol = sym_custom_inline;
361
+ break;
349
362
  case CMARK_NODE_BLOCK_QUOTE:
350
363
  symbol = sym_blockquote;
351
364
  break;
@@ -1151,6 +1164,8 @@ VALUE rb_Markly_extensions(VALUE self) {
1151
1164
 
1152
1165
  __attribute__((visibility("default"))) void Init_markly(void) {
1153
1166
  sym_document = ID2SYM(rb_intern("document"));
1167
+ sym_custom_block = ID2SYM(rb_intern("custom_block"));
1168
+ sym_custom_inline = ID2SYM(rb_intern("custom_inline"));
1154
1169
  sym_blockquote = ID2SYM(rb_intern("blockquote"));
1155
1170
  sym_list = ID2SYM(rb_intern("list"));
1156
1171
  sym_list_item = ID2SYM(rb_intern("list_item"));
data/ext/markly/render.c CHANGED
@@ -198,9 +198,11 @@ char *cmark_render(cmark_mem *mem, cmark_node *root, int options, int width,
198
198
  }
199
199
  }
200
200
 
201
- // ensure final newline
202
- if (renderer.buffer->size == 0 || renderer.buffer->ptr[renderer.buffer->size - 1] != '\n') {
203
- cmark_strbuf_putc(renderer.buffer, '\n');
201
+ // If the root node is a block type, ensure there's a final newline:
202
+ if (CMARK_NODE_TYPE_BLOCK_P(root->type)) {
203
+ if (renderer.buffer->size == 0 || renderer.buffer->ptr[renderer.buffer->size - 1] != '\n') {
204
+ cmark_strbuf_putc(renderer.buffer, '\n');
205
+ }
204
206
  }
205
207
 
206
208
  result = (char *)cmark_strbuf_detach(renderer.buffer);
data/lib/markly/node.rb CHANGED
@@ -5,7 +5,7 @@
5
5
  # Copyright, 2016-2017, by Yuki Izumi.
6
6
  # Copyright, 2017, by Goro Fuji.
7
7
  # Copyright, 2018, by Jerry van Leeuwen.
8
- # Copyright, 2020-2023, by Samuel Williams.
8
+ # Copyright, 2020-2024, by Samuel Williams.
9
9
 
10
10
  require_relative 'node/inspect'
11
11
 
@@ -42,7 +42,7 @@ module Markly
42
42
  # width - Column to wrap the output at
43
43
  #
44
44
  # Returns a {String}.
45
- def to_commonmark(flags: DEFAULT, width: 120)
45
+ def to_commonmark(flags: DEFAULT, width: 0)
46
46
  _render_commonmark(flags, width).force_encoding('utf-8')
47
47
  end
48
48
 
@@ -54,7 +54,7 @@ module Markly
54
54
  # width - Column to wrap the output at
55
55
  #
56
56
  # Returns a {String}.
57
- def to_plaintext(flags: DEFAULT, width: 120)
57
+ def to_plaintext(flags: DEFAULT, width: 0)
58
58
  _render_plaintext(flags, width).force_encoding('utf-8')
59
59
  end
60
60
 
@@ -135,5 +135,19 @@ module Markly
135
135
  node = next_node
136
136
  end
137
137
  end
138
+
139
+ # Extract the children as a fragment.
140
+ #
141
+ # @returns [Markly::Node] the fragment.
142
+ def extract_children
143
+ fragment = Markly::Node.new(:custom_inline)
144
+
145
+ while child = self.first_child
146
+ fragment.append_child(child)
147
+ end
148
+
149
+ fragment
150
+ end
151
+
138
152
  end
139
153
  end
@@ -79,10 +79,10 @@ module Markly
79
79
  end
80
80
  else
81
81
  start = if node.list_start == 1
82
- "<ol#{source_position(node)}>\n"
83
- else
84
- "<ol start=\"#{node.list_start}\"#{source_position(node)}>\n"
85
- end
82
+ "<ol#{source_position(node)}>\n"
83
+ else
84
+ "<ol start=\"#{node.list_start}\"#{source_position(node)}>\n"
85
+ end
86
86
  container(start, '</ol>') do
87
87
  out(:children)
88
88
  end
@@ -105,9 +105,9 @@ module Markly
105
105
  return '' unless tasklist?(node)
106
106
 
107
107
  state = if checked?(node)
108
- 'checked="" disabled=""'
109
- else
110
- 'disabled=""'
108
+ 'checked="" disabled=""'
109
+ else
110
+ 'disabled=""'
111
111
  end
112
112
  "><input type=\"checkbox\" #{state} /"
113
113
  end
@@ -239,13 +239,14 @@ module Markly
239
239
  out("<tr#{source_position(node)}>\n", :children, "</tr>\n")
240
240
  end
241
241
 
242
+ TABLE_CELL_ALIGNMENT = {
243
+ left: ' align="left"',
244
+ right: ' align="right"',
245
+ center: ' align="center"'
246
+ }.freeze
247
+
242
248
  def table_cell(node)
243
- align = case @alignments[@column_index]
244
- when :left then ' align="left"'
245
- when :right then ' align="right"'
246
- when :center then ' align="center"'
247
- else; ''
248
- end
249
+ align = TABLE_CELL_ALIGNMENT.fetch(@alignments[@column_index], '')
249
250
  out(@in_header ? "<th#{align}#{source_position(node)}>" : "<td#{align}#{source_position(node)}>", :children, @in_header ? "</th>\n" : "</td>\n")
250
251
  @column_index += 1
251
252
  end
@@ -7,5 +7,5 @@
7
7
  # Copyright, 2020-2023, by Samuel Williams.
8
8
 
9
9
  module Markly
10
- VERSION = '0.9.1'
10
+ VERSION = '0.11.0'
11
11
  end
data/license.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # MIT License
2
2
 
3
3
  Copyright, 2014, by John MacFarlane.
4
- Copyright, 2015-2020, by Garen Torikian.
4
+ Copyright, 2015-2024, by Garen Torikian.
5
5
  Copyright, 2015, by Nick Wellnhofer.
6
6
  Copyright, 2015-2017, by Andrew Anderson.
7
7
  Copyright, 2016-2017, by Yuki Izumi.
@@ -18,7 +18,8 @@ Copyright, 2018, by Danny Iachini.
18
18
  Copyright, 2019-2020, by Tomoya Chiba.
19
19
  Copyright, 2019, by Brett Walker.
20
20
  Copyright, 2020, by Olle Jonsson.
21
- Copyright, 2020-2023, by Samuel Williams.
21
+ Copyright, 2020-2024, by Samuel Williams.
22
+ Copyright, 2024, by Ross Kaffenberger.
22
23
 
23
24
  Permission is hereby granted, free of charge, to any person obtaining a copy
24
25
  of this software and associated documentation files (the "Software"), to deal
data/readme.md CHANGED
@@ -5,8 +5,7 @@ A parser and abstract syntax tree for Markdown documents (CommonMark compatible)
5
5
  documented in the [GitHub Flavored Markdown spec](http://github.github.com/gfm/), such as support for tables,
6
6
  strikethroughs, and autolinking.
7
7
 
8
- [![Development
9
- Status](https://github.com/ioquatix/markly/workflows/Test/badge.svg)](https://github.com/ioquatix/markly/actions?workflow=Test)
8
+ [![Development Status](https://github.com/ioquatix/markly/workflows/Test/badge.svg)](https://github.com/ioquatix/markly/actions?workflow=Test)
10
9
 
11
10
  ## Motivation
12
11
 
@@ -34,3 +33,11 @@ We welcome contributions to this project.
34
33
  3. Commit your changes (`git commit -am 'Add some feature'`).
35
34
  4. Push to the branch (`git push origin my-new-feature`).
36
35
  5. Create new Pull Request.
36
+
37
+ ### Developer Certificate of Origin
38
+
39
+ In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
40
+
41
+ ### Community Guidelines
42
+
43
+ This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
@@ -22,6 +22,7 @@ authors:
22
22
  - Mu-An Chiou
23
23
  - Olle Jonsson
24
24
  - Roberto Hidalgo
25
+ - Ross Kaffenberger
25
26
  - Vitaliy Klachkov
26
27
  autorequire:
27
28
  bindir: bin
@@ -55,50 +56,8 @@ cert_chain:
55
56
  Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
56
57
  voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
57
58
  -----END CERTIFICATE-----
58
- date: 2023-08-11 00:00:00.000000000 Z
59
- dependencies:
60
- - !ruby/object:Gem::Dependency
61
- name: bake
62
- requirement: !ruby/object:Gem::Requirement
63
- requirements:
64
- - - ">="
65
- - !ruby/object:Gem::Version
66
- version: '0'
67
- type: :development
68
- prerelease: false
69
- version_requirements: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- version: '0'
74
- - !ruby/object:Gem::Dependency
75
- name: covered
76
- requirement: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - ">="
79
- - !ruby/object:Gem::Version
80
- version: '0'
81
- type: :development
82
- prerelease: false
83
- version_requirements: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- version: '0'
88
- - !ruby/object:Gem::Dependency
89
- name: sus
90
- requirement: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - ">="
93
- - !ruby/object:Gem::Version
94
- version: '0'
95
- type: :development
96
- prerelease: false
97
- version_requirements: !ruby/object:Gem::Requirement
98
- requirements:
99
- - - ">="
100
- - !ruby/object:Gem::Version
101
- version: '0'
59
+ date: 2024-08-19 00:00:00.000000000 Z
60
+ dependencies: []
102
61
  description:
103
62
  email:
104
63
  executables: []
@@ -106,7 +65,6 @@ extensions:
106
65
  - ext/markly/extconf.rb
107
66
  extra_rdoc_files: []
108
67
  files:
109
- - conduct.md
110
68
  - ext/markly/arena.c
111
69
  - ext/markly/autolink.c
112
70
  - ext/markly/autolink.h
@@ -191,8 +149,9 @@ homepage: https://github.com/ioquatix/markly
191
149
  licenses:
192
150
  - MIT
193
151
  metadata:
194
- funding_uri: https://github.com/sponsors/ioquatix/
195
152
  documentation_uri: https://ioquatix.github.io/markly/
153
+ funding_uri: https://github.com/sponsors/ioquatix/
154
+ source_code_uri: https://github.com/ioquatix/markly.git
196
155
  post_install_message:
197
156
  rdoc_options: []
198
157
  require_paths:
@@ -201,14 +160,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
201
160
  requirements:
202
161
  - - ">="
203
162
  - !ruby/object:Gem::Version
204
- version: '2.5'
163
+ version: '3.1'
205
164
  required_rubygems_version: !ruby/object:Gem::Requirement
206
165
  requirements:
207
166
  - - ">="
208
167
  - !ruby/object:Gem::Version
209
168
  version: '0'
210
169
  requirements: []
211
- rubygems_version: 3.4.7
170
+ rubygems_version: 3.5.11
212
171
  signing_key:
213
172
  specification_version: 4
214
173
  summary: CommonMark parser and renderer. Written in C, wrapped in Ruby.
metadata.gz.sig CHANGED
Binary file
data/conduct.md DELETED
@@ -1,133 +0,0 @@
1
-
2
- # Contributor Covenant Code of Conduct
3
-
4
- ## Our Pledge
5
-
6
- We as members, contributors, and leaders pledge to make participation in our
7
- community a harassment-free experience for everyone, regardless of age, body
8
- size, visible or invisible disability, ethnicity, sex characteristics, gender
9
- identity and expression, level of experience, education, socio-economic status,
10
- nationality, personal appearance, race, caste, color, religion, or sexual
11
- identity and orientation.
12
-
13
- We pledge to act and interact in ways that contribute to an open, welcoming,
14
- diverse, inclusive, and healthy community.
15
-
16
- ## Our Standards
17
-
18
- Examples of behavior that contributes to a positive environment for our
19
- community include:
20
-
21
- * Demonstrating empathy and kindness toward other people
22
- * Being respectful of differing opinions, viewpoints, and experiences
23
- * Giving and gracefully accepting constructive feedback
24
- * Accepting responsibility and apologizing to those affected by our mistakes,
25
- and learning from the experience
26
- * Focusing on what is best not just for us as individuals, but for the overall
27
- community
28
-
29
- Examples of unacceptable behavior include:
30
-
31
- * The use of sexualized language or imagery, and sexual attention or advances of
32
- any kind
33
- * Trolling, insulting or derogatory comments, and personal or political attacks
34
- * Public or private harassment
35
- * Publishing others' private information, such as a physical or email address,
36
- without their explicit permission
37
- * Other conduct which could reasonably be considered inappropriate in a
38
- professional setting
39
-
40
- ## Enforcement Responsibilities
41
-
42
- Community leaders are responsible for clarifying and enforcing our standards of
43
- acceptable behavior and will take appropriate and fair corrective action in
44
- response to any behavior that they deem inappropriate, threatening, offensive,
45
- or harmful.
46
-
47
- Community leaders have the right and responsibility to remove, edit, or reject
48
- comments, commits, code, wiki edits, issues, and other contributions that are
49
- not aligned to this Code of Conduct, and will communicate reasons for moderation
50
- decisions when appropriate.
51
-
52
- ## Scope
53
-
54
- This Code of Conduct applies within all community spaces, and also applies when
55
- an individual is officially representing the community in public spaces.
56
- Examples of representing our community include using an official e-mail address,
57
- posting via an official social media account, or acting as an appointed
58
- representative at an online or offline event.
59
-
60
- ## Enforcement
61
-
62
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
- reported to the community leaders responsible for enforcement at
64
- [INSERT CONTACT METHOD].
65
- All complaints will be reviewed and investigated promptly and fairly.
66
-
67
- All community leaders are obligated to respect the privacy and security of the
68
- reporter of any incident.
69
-
70
- ## Enforcement Guidelines
71
-
72
- Community leaders will follow these Community Impact Guidelines in determining
73
- the consequences for any action they deem in violation of this Code of Conduct:
74
-
75
- ### 1. Correction
76
-
77
- **Community Impact**: Use of inappropriate language or other behavior deemed
78
- unprofessional or unwelcome in the community.
79
-
80
- **Consequence**: A private, written warning from community leaders, providing
81
- clarity around the nature of the violation and an explanation of why the
82
- behavior was inappropriate. A public apology may be requested.
83
-
84
- ### 2. Warning
85
-
86
- **Community Impact**: A violation through a single incident or series of
87
- actions.
88
-
89
- **Consequence**: A warning with consequences for continued behavior. No
90
- interaction with the people involved, including unsolicited interaction with
91
- those enforcing the Code of Conduct, for a specified period of time. This
92
- includes avoiding interactions in community spaces as well as external channels
93
- like social media. Violating these terms may lead to a temporary or permanent
94
- ban.
95
-
96
- ### 3. Temporary Ban
97
-
98
- **Community Impact**: A serious violation of community standards, including
99
- sustained inappropriate behavior.
100
-
101
- **Consequence**: A temporary ban from any sort of interaction or public
102
- communication with the community for a specified period of time. No public or
103
- private interaction with the people involved, including unsolicited interaction
104
- with those enforcing the Code of Conduct, is allowed during this period.
105
- Violating these terms may lead to a permanent ban.
106
-
107
- ### 4. Permanent Ban
108
-
109
- **Community Impact**: Demonstrating a pattern of violation of community
110
- standards, including sustained inappropriate behavior, harassment of an
111
- individual, or aggression toward or disparagement of classes of individuals.
112
-
113
- **Consequence**: A permanent ban from any sort of public interaction within the
114
- community.
115
-
116
- ## Attribution
117
-
118
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119
- version 2.1, available at
120
- [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
121
-
122
- Community Impact Guidelines were inspired by
123
- [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124
-
125
- For answers to common questions about this code of conduct, see the FAQ at
126
- [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
127
- [https://www.contributor-covenant.org/translations][translations].
128
-
129
- [homepage]: https://www.contributor-covenant.org
130
- [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
131
- [Mozilla CoC]: https://github.com/mozilla/diversity
132
- [FAQ]: https://www.contributor-covenant.org/faq
133
- [translations]: https://www.contributor-covenant.org/translations