zenweb 3.10.7 → 3.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: 01e3cb1c4a6f9989e24beda9df68db5371f2080146b9b25b01a95af133f61e77
4
- data.tar.gz: 0ad4b847828bbc507ee26cc30d68abf9df3899a2df582840a47d3096a5eab788
3
+ metadata.gz: 84df6337b405ae77d3a2ed5fb1c6aa940ce2ad08ba6dd904a9b3cde365a47623
4
+ data.tar.gz: bc471952a820c258e6704dc1e73039c16978edf51b7016ee12db27514e9eeb2e
5
5
  SHA512:
6
- metadata.gz: 3ea4ac607e3341abfb5120abe57cd3614671b8c2659feddad45c621aac669300737864b6b4418e6966d3dbd53bd830862f622fa498a61cefe4096c8244bb882b
7
- data.tar.gz: c5765b977e8798763cd16a9f3cf0cba8bf19c5fd9bb8804899191e8f5170db8fee001a3152538fc9e700df48461636ab8651d911bf416721841d7b33feef68c3
6
+ metadata.gz: '08fbb2f23c3ebb0ca4323a5a79d0604f84d61f5904c3c758e2c3ef2e5956fc2044cf1eec66b3a3a93b18b914e12fa47247b4bcc7e3a6498750c7201b9d5fa8b7'
7
+ data.tar.gz: 26452812d1d9459a0413ca40b8fa9a394372b7c4f2cdcacc6ce7cef7b85bb8a69b4c78e3e7def7e9356ed6f1af2ac584434d9da4465b8b8c861e8c1ea729229d
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,15 @@
1
+ === 3.11.0 / 2023-09-28
2
+
3
+ * 1 minor enhancement:
4
+
5
+ * Added Page#link_head helper method to clean up <link...> tags
6
+
7
+ === 3.10.8 / 2023-08-30
8
+
9
+ * 1 bug fix:
10
+
11
+ * Fixed configuration of no_line_numbers for kramdown v2 changes
12
+
1
13
  === 3.10.7 / 2023-07-25
2
14
 
3
15
  * 1 minor enhancement:
@@ -22,8 +22,8 @@ rss_length: 15
22
22
  <email>{{ email }}</email>
23
23
  </author>
24
24
 
25
- <link href="{{ feed_url }}" rel="self"/>
26
- <link href="{{ domain }}/"/>
25
+ {{ link_head href:feed_url, rel:"self" }}
26
+ {{ link_head href:domain }}
27
27
 
28
28
  <rights> © {{ author }} - {{ email }} </rights>
29
29
 
@@ -33,7 +33,7 @@ rss_length: 15
33
33
  <title>{{ h post.title }}</title>
34
34
  <updated>{{ post.date.iso8601 }}</updated>
35
35
 
36
- <link rel="alternate" href="{{ domain }}{{ post.url }}"/>
36
+ {{ link_head rel:"alternate", href:"{{ domain }}{{ post.url }}" }}
37
37
 
38
38
  <published>{{ post.date.iso8601 }}</published>
39
39
  <content type="html">{{ h post.subrender }}</content>
data/lib/zenweb/page.rb CHANGED
@@ -330,6 +330,13 @@ module Zenweb
330
330
  %(<meta #{label}="#{name}" content="#{val}">) if val
331
331
  end
332
332
 
333
+ ##
334
+ # Stupid helper method to make declaring header link lines cleaner
335
+
336
+ def link_head **kws
337
+ %(<link #{kws.map { |k,v| "#{k}=#{v.inspect}" }.join " "} />)
338
+ end
339
+
333
340
  ##
334
341
  # Access a config variable and only warn if it isn't accessible.
335
342
  # If +msg+ starts with render, go ahead and pass that up to the
@@ -373,7 +380,7 @@ module Zenweb
373
380
  # Stupid helper method to make declaring stylesheets cleaner
374
381
 
375
382
  def stylesheet name
376
- %(<link rel="stylesheet" type="text/css" href="/css/#{name}.css">)
383
+ link_head rel:"stylesheet", type:"text/css", href:"/css/#{name}.css"
377
384
  end
378
385
 
379
386
  ##
@@ -40,7 +40,10 @@ class Zenweb::Page
40
40
  require "coderay/zenweb_extensions"
41
41
 
42
42
  config = KRAMDOWN_CONFIG.dup
43
- config[:coderay_line_numbers] = nil if no_line_numbers
43
+ if no_line_numbers then
44
+ config[:syntax_highlighter_opts] = config[:syntax_highlighter_opts].dup
45
+ config[:syntax_highlighter_opts][:line_numbers] = nil
46
+ end
44
47
 
45
48
  Kramdown::Document.new(content, config).to_html
46
49
  end
data/lib/zenweb.rb CHANGED
@@ -6,7 +6,7 @@ require "time"
6
6
 
7
7
  module Zenweb
8
8
  # duh
9
- VERSION = "3.10.7"
9
+ VERSION = "3.11.0"
10
10
  end
11
11
 
12
12
  require "zenweb/site"
@@ -441,7 +441,7 @@ class TestZenwebPage < Minitest::Test
441
441
  end
442
442
 
443
443
  def test_stylesheet
444
- exp = %(<link rel="stylesheet" type="text/css" href="/css/woot.css">)
444
+ exp = %(<link rel="stylesheet" type="text/css" href="/css/woot.css" />)
445
445
  assert_equal exp, page.stylesheet("woot")
446
446
  end
447
447
 
@@ -18,8 +18,8 @@ class MarkdownTest < Minitest::Test
18
18
  end
19
19
 
20
20
  class TestUgh < MarkdownTest
21
- def assert_markdown_code lang, line, *exps
22
- act = page.markdown "``` #{lang}\n#{line}\n```"
21
+ def assert_markdown_code lang, line, *exps, no_lineno: false
22
+ act = page.markdown "``` #{lang}\n#{line}\n```", no_lineno
23
23
 
24
24
  exps.each do |exp|
25
25
  assert_includes act, exp, act
@@ -33,6 +33,14 @@ class TestUgh < MarkdownTest
33
33
  '<span class="keyword">def</span>')
34
34
  end
35
35
 
36
+ def test_coderay_ruby__no_line_numbers
37
+ assert_markdown_code("ruby",
38
+ "def x\n 42\nend",
39
+ '<div class="language-ruby highlighter-coderay"><div class="CodeRay">',
40
+ '<span class="keyword">def</span>',
41
+ no_lineno: true)
42
+ end
43
+
36
44
  def test_coderay_clojure
37
45
  assert_markdown_code("clojure",
38
46
  "(+ 1 1)",
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zenweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.7
4
+ version: 3.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -29,7 +29,7 @@ cert_chain:
29
29
  ROfWo9Uyp8ba/j9eVG14KkYRaLydAY1MNQk2yd3R5CGfeOpD1kttxjoypoUJ2dOG
30
30
  nsNBRuQJ1UfiCG97a6DNm+Fr
31
31
  -----END CERTIFICATE-----
32
- date: 2023-07-25 00:00:00.000000000 Z
32
+ date: 2023-09-29 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rake
metadata.gz.sig CHANGED
@@ -1 +1,3 @@
1
- �ߏ�i ��W�)��Y6q˟��ۦ3*��Ë�� ��A9*��-����A6�-���1��7H5��_����ƈ��_5b����$�)���6J���K
1
+ r������2�u\5��� 84��f y�vBϥg� 6!���7�J6;�9!GJ�V�m������
2
+ e �6Y/���=�ᢞbN2q�EEE_;�<<0��� �Ƌ*�w� ˚J��cQe� �rU�_�)���>}j-=]�D/Z�x���$E�;I�/��{O�ȭ�*�,���Wɝ S>��0�`��/Y��n�ڴ�C����� �V���R<�C��燅�[Mf��_��4�><;���׸�p{��Y���
3
+ �\�)