markly 0.5.0 → 0.6.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/ext/markly/extconf.rb +10 -2
- data/ext/markly/markly.c +1 -1
- data/lib/markly/markly.so +0 -0
- data/lib/markly/renderer/html_renderer.rb +12 -8
- data/lib/markly/version.rb +1 -1
- data/lib/markly.rb +1 -1
- metadata +4 -4
- data/lib/markly/markly.bundle +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78cfc5814d3b2666b77795de6b7e19ab99acf8b63ae6925bbb6158a69063fdda
|
4
|
+
data.tar.gz: e063c28a6019b7623df0db94b2393e226d9e45c425d9230f77392a7097df0a9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e3ee35349c3aeafb8cb18cd586b564040c1db886c13dabcc2432628f6a692fd65d0c59c57ab0065f5ebdb6b8635e4bb3c7c6be598170c81164dcbf955324efe
|
7
|
+
data.tar.gz: 818216b44c592bf1882ab799959aa6ec5d5cdf7c5ed8ead5f38fd8f5252226cb38192affb3a2dd22f5c30c6fd07d985d87b5b477d865aca41822e43e21d79c85
|
data/ext/markly/extconf.rb
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# Loads mkmf which is used to make makefiles for Ruby extensions
|
3
4
|
require 'mkmf'
|
4
5
|
|
5
|
-
$CFLAGS <<
|
6
|
+
$CFLAGS << " -O3 -std=c99"
|
6
7
|
|
7
|
-
|
8
|
+
gem_name = File.basename(__dir__)
|
9
|
+
extension_name = 'markly'
|
10
|
+
|
11
|
+
# The destination:
|
12
|
+
dir_config(extension_name)
|
13
|
+
|
14
|
+
# Generate the makefile to compile the native binary into `lib`:
|
15
|
+
create_makefile(File.join(gem_name, extension_name))
|
data/ext/markly/markly.c
CHANGED
@@ -333,7 +333,7 @@ static VALUE rb_node_set_string_content(VALUE self, VALUE s) {
|
|
333
333
|
static VALUE rb_node_get_type(VALUE self) {
|
334
334
|
int node_type = 0;
|
335
335
|
cmark_node *node = NULL;
|
336
|
-
VALUE symbol =
|
336
|
+
VALUE symbol = Qnil;
|
337
337
|
const char *s = NULL;
|
338
338
|
|
339
339
|
TypedData_Get_Struct(self, cmark_node, &rb_Markly_Node_Type, node);
|
Binary file
|
@@ -4,11 +4,12 @@ require 'cgi'
|
|
4
4
|
|
5
5
|
module Markly
|
6
6
|
class HTMLRenderer < Renderer
|
7
|
-
def initialize(ids: false, **options)
|
7
|
+
def initialize(ids: false, tight: false, **options)
|
8
8
|
super(**options)
|
9
9
|
|
10
10
|
@ids = ids
|
11
11
|
@section = nil
|
12
|
+
@tight = tight
|
12
13
|
end
|
13
14
|
|
14
15
|
def document(_)
|
@@ -28,16 +29,19 @@ module Markly
|
|
28
29
|
|
29
30
|
def header(node)
|
30
31
|
block do
|
31
|
-
|
32
|
-
|
33
|
-
|
32
|
+
if @ids
|
33
|
+
out('</section>') if @section
|
34
|
+
@section = true
|
35
|
+
out("<section#{id_for(node)}>")
|
36
|
+
end
|
37
|
+
|
34
38
|
out('<h', node.header_level, "#{source_position(node)}>", :children,
|
35
39
|
'</h', node.header_level, '>')
|
36
40
|
end
|
37
41
|
end
|
38
42
|
|
39
43
|
def paragraph(node)
|
40
|
-
if @
|
44
|
+
if @tight && node.parent.type != :blockquote
|
41
45
|
out(:children)
|
42
46
|
else
|
43
47
|
block do
|
@@ -53,8 +57,8 @@ module Markly
|
|
53
57
|
end
|
54
58
|
|
55
59
|
def list(node)
|
56
|
-
|
57
|
-
@
|
60
|
+
old_tight = @tight
|
61
|
+
@tight = node.list_tight
|
58
62
|
|
59
63
|
block do
|
60
64
|
if node.list_type == :bullet_list
|
@@ -73,7 +77,7 @@ module Markly
|
|
73
77
|
end
|
74
78
|
end
|
75
79
|
|
76
|
-
@
|
80
|
+
@tight = old_tight
|
77
81
|
end
|
78
82
|
|
79
83
|
def list_item(node)
|
data/lib/markly/version.rb
CHANGED
data/lib/markly.rb
CHANGED
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.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bake
|
@@ -150,7 +150,7 @@ files:
|
|
150
150
|
- ext/markly/xml.c
|
151
151
|
- lib/markly.rb
|
152
152
|
- lib/markly/flags.rb
|
153
|
-
- lib/markly/markly.
|
153
|
+
- lib/markly/markly.so
|
154
154
|
- lib/markly/node.rb
|
155
155
|
- lib/markly/node/inspect.rb
|
156
156
|
- lib/markly/renderer.rb
|
@@ -176,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
176
|
- !ruby/object:Gem::Version
|
177
177
|
version: '0'
|
178
178
|
requirements: []
|
179
|
-
rubygems_version: 3.1.
|
179
|
+
rubygems_version: 3.1.6
|
180
180
|
signing_key:
|
181
181
|
specification_version: 4
|
182
182
|
summary: CommonMark parser and renderer. Written in C, wrapped in Ruby.
|
data/lib/markly/markly.bundle
DELETED
Binary file
|