gollum-lib 5.1.2-java → 5.1.3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/gemspec.rb +1 -1
- data/lib/gollum-lib/macro/global_toc.rb +1 -1
- data/lib/gollum-lib/macro/navigation.rb +1 -1
- data/lib/gollum-lib/macro/note.rb +1 -1
- data/lib/gollum-lib/macro/warn.rb +1 -1
- data/lib/gollum-lib/markups.rb +1 -1
- data/lib/gollum-lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30bf4e344e069297b87fad5950fc22d5cf148179bc789b6829be3ff8cb840e75
|
4
|
+
data.tar.gz: 8293a92e93665911a928eae7aaadceb42db44128dd704e35f534ffced06278df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b5344bf05f97539ade8fe0102ef8b17e405c2b362e38673d7e07752169852170a4be3c1611006e73121b7a43d54c469b229c0a173b91773228e50ebba3a66c
|
7
|
+
data.tar.gz: f1b7c53f8c628b38bdda9d0a834f10b3ffd703b157da597d068645cdc5daa6412c98b5681f942c8060b86c82eff811e3a1837bf8496e766471082d8cffe5c44f
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@ gollum lib -- A wiki built on top of Git
|
|
2
2
|
========================================
|
3
3
|
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/gollum-lib.svg)](http://badge.fury.io/rb/gollum-lib)
|
5
|
-
[![Build
|
5
|
+
[![Ruby Build](https://github.com/gollum/gollum-lib/actions/workflows/test.yaml/badge.svg)](https://github.com/gollum/gollum-lib/actions/workflows/test.yaml)
|
6
6
|
[![Cutting Edge Dependency Status](https://dometto-cuttingedge.herokuapp.com/github/gollum/gollum-lib/svg 'Cutting Edge Dependency Status')](https://dometto-cuttingedge.herokuapp.com/github/gollum/gollum-lib/info)
|
7
7
|
|
8
8
|
## DESCRIPTION
|
data/gemspec.rb
CHANGED
@@ -8,7 +8,7 @@ def specification(version, default_adapter, platform = nil)
|
|
8
8
|
s.name = 'gollum-lib'
|
9
9
|
s.version = version
|
10
10
|
s.platform = platform if platform
|
11
|
-
s.date = '2021-
|
11
|
+
s.date = '2021-09-06'
|
12
12
|
s.date = '2017-04-13'
|
13
13
|
s.rubyforge_project = 'gollum-lib'
|
14
14
|
s.license = 'MIT'
|
@@ -6,7 +6,7 @@ module Gollum
|
|
6
6
|
prepath = @wiki.base_path.sub(/\/$/, '')
|
7
7
|
result = '<ul>' + @wiki.pages.map { |p| "<li><a href=\"#{CGI::escapeHTML(prepath + "/" + p.escaped_url_path)}\">#{CGI::escapeHTML(p.url_path)}</a></li>" }.join + '</ul>'
|
8
8
|
end
|
9
|
-
"<div class=\"toc\"><div class=\"toc-title\">#{
|
9
|
+
"<div class=\"toc\"><div class=\"toc-title\">#{title}</div>#{result}</div>"
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -14,7 +14,7 @@ module Gollum
|
|
14
14
|
end
|
15
15
|
result = "<ul>#{list_items.join}</ul>"
|
16
16
|
end
|
17
|
-
"<div class=\"toc\"><div class=\"toc-title\">#{
|
17
|
+
"<div class=\"toc\"><div class=\"toc-title\">#{title}</div>#{result}</div>"
|
18
18
|
end
|
19
19
|
|
20
20
|
end
|
@@ -4,7 +4,7 @@ module Gollum
|
|
4
4
|
def render(warning)
|
5
5
|
icon = Octicons::Octicon.new('alert', {width: 24, height: 24})
|
6
6
|
icon.options[:class] << ' mr-2'
|
7
|
-
"<div class='flash flash-warn'>#{icon.to_svg}#{
|
7
|
+
"<div class='flash flash-warn'>#{icon.to_svg}#{warning}</div>"
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
data/lib/gollum-lib/markups.rb
CHANGED
@@ -81,7 +81,7 @@ module Gollum
|
|
81
81
|
:enabled => MarkupRegisterUtils::gem_exists?("creole"),
|
82
82
|
:reverse_links => true)
|
83
83
|
register(:rst, "reStructuredText",
|
84
|
-
:enabled => MarkupRegisterUtils::executable_exists?("
|
84
|
+
:enabled => MarkupRegisterUtils::executable_exists?("python3"),
|
85
85
|
:extensions => ['rest', 'rst'])
|
86
86
|
register(:asciidoc, "AsciiDoc",
|
87
87
|
:skip_filters => [:Tags],
|
data/lib/gollum-lib/version.rb
CHANGED