commonmarker 1.0.0.pre9-aarch64-linux → 1.0.0.pre11-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae61e22944f69e9d8fd73a075a2b225b2d3fab0cc72ab4c729401ffe71a6a5e6
4
- data.tar.gz: 14f11c71a669044ab029ba42ad4773060f29242a03ef79678f027ee3b020329c
3
+ metadata.gz: 9bcee55bfbd24c4c8b3ab35d67c75aeebed1fb62a27db274b818681d97aadbda
4
+ data.tar.gz: bec7c7ff61937b83359bf77d488d63443c8cdce56cf1c3228b761597334639a7
5
5
  SHA512:
6
- metadata.gz: dc518435384b58fce65163c18ec812eb66ecf4f3926bc19dc948379ce7ca748483e87d5932634cbd28284656c3b225239c1903bd1612c8770026d929d990d059
7
- data.tar.gz: 333dadf42bcafa20e91ddcf4238b303178730d4815fc124a393df158705eac879ed0beaf093eb51e48199de7ffbc57797ee8e27bd6df29b4fb0fcd64a04d45ed
6
+ metadata.gz: 17c1de83097043fd63f6223a979dd565fa23c94dae408a304c693ff3592a02a2c937258c653cc363c2364ffafea024324a2862e375db747bbc2c243892428845
7
+ data.tar.gz: 81d6ffcc546200d6518e0293fdf75ad9b4cad2726a582fea0b44032716bd0590f6bd9c372eb6c8a57e1f6e2033f32b89d743286364b05ba323a5ddc2575e8aa8
Binary file
Binary file
@@ -26,7 +26,7 @@ module Commonmarker
26
26
  header_ids: "",
27
27
  footnotes: false,
28
28
  description_lists: false,
29
- front_matter_delimiter: nil,
29
+ front_matter_delimiter: "",
30
30
  shortcodes: true,
31
31
  },
32
32
  format: [:html].freeze,
@@ -79,7 +79,7 @@ module Commonmarker
79
79
 
80
80
  [:syntax_highlighter].each do |type|
81
81
  define_singleton_method :"process_#{type}_plugin" do |plugin|
82
- return nil if plugin.nil? # plugin explicitly nil, remove it
82
+ return if plugin.nil? # plugin explicitly nil, remove it
83
83
 
84
84
  Commonmarker::Config::PLUGINS[type].each_with_object({}) do |(key, value), hash|
85
85
  if plugin.nil? # option not provided, go for the default
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "1.0.0.pre9"
4
+ VERSION = "1.0.0.pre11"
5
5
  end
data/lib/commonmarker.rb CHANGED
@@ -7,11 +7,6 @@ require "commonmarker/config"
7
7
  require "commonmarker/renderer"
8
8
  require "commonmarker/version"
9
9
 
10
- if ENV.fetch("DEBUG", false)
11
- require "awesome_print"
12
- require "debug"
13
- end
14
-
15
10
  module Commonmarker
16
11
  class << self
17
12
  # Public: Parses a CommonMark string into an HTML string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmarker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre9
4
+ version: 1.0.0.pre11
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Garen Torikian
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-28 00:00:00.000000000 Z
12
+ date: 2023-10-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake