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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 382ef4ee5a2e69398268595c59f914fc694c1fa0e450b7ba2f74a6ef06d17ede
4
- data.tar.gz: 5d7119359d1f485980ac4ba9736384f0c67ac0002133021fccf3aa81896ef46e
3
+ metadata.gz: 78cfc5814d3b2666b77795de6b7e19ab99acf8b63ae6925bbb6158a69063fdda
4
+ data.tar.gz: e063c28a6019b7623df0db94b2393e226d9e45c425d9230f77392a7097df0a9e
5
5
  SHA512:
6
- metadata.gz: 9b941bb485e19ed83aa4268e5586f39fdc4919e9dc6362dd729980b698a5f35e26299a742382e6055ee644d297393c0c1e95ef8cac5003765beb9ff47f1dc384
7
- data.tar.gz: 356b61f0db0b4c0fa57d2cca31943264daaad9c31ed2bc5a04d7cdebf0fa27d863215c1ae1a48372d5ccc1b9a52a287ad8fee3657a778667d76cb3bf37592dff
6
+ metadata.gz: 8e3ee35349c3aeafb8cb18cd586b564040c1db886c13dabcc2432628f6a692fd65d0c59c57ab0065f5ebdb6b8635e4bb3c7c6be598170c81164dcbf955324efe
7
+ data.tar.gz: 818216b44c592bf1882ab799959aa6ec5d5cdf7c5ed8ead5f38fd8f5252226cb38192affb3a2dd22f5c30c6fd07d985d87b5b477d865aca41822e43e21d79c85
@@ -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 << ' -std=c99'
6
+ $CFLAGS << " -O3 -std=c99"
6
7
 
7
- create_makefile('markly/markly')
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 = NULL;
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
- out('</section>') if @section
32
- @section = true
33
- out("<section #{id_for(node)}>")
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 @in_tight && node.parent.type != :blockquote
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
- old_in_tight = @in_tight
57
- @in_tight = node.list_tight
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
- @in_tight = old_in_tight
80
+ @tight = old_tight
77
81
  end
78
82
 
79
83
  def list_item(node)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Markly
4
- VERSION = '0.5.0'
4
+ VERSION = '0.6.1'
5
5
  end
data/lib/markly.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  # The compiled library.
5
- require_relative 'markly/markly'
5
+ require 'markly/markly'
6
6
 
7
7
  require_relative 'markly/flags'
8
8
  require_relative 'markly/node'
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.5.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: 2020-07-13 00:00:00.000000000 Z
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.bundle
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.2
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.
Binary file