yard-markdown 0.7.2 → 0.7.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e70dddce69cb721a1297710f9737bbe477db25c0cbcccbb46b5d220c66f540d
|
|
4
|
+
data.tar.gz: d0590255cc8255a3d465ada0918e70ffca8318500da295cb09e4dc3ac0b76533
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89c47649d1ea7b3d2dbc247265ed21e5c83bfb8ccfafd0420697bb9ea3fc884689923c4894018841ffe8e696cd17e62b0bb45377e88776ce35942bac3f5374b5
|
|
7
|
+
data.tar.gz: fb05c5921db78b01c28a0e34ae931eada11a890ba6c2c6d966948ac4b21bfe7ae50d7dfd6396b9a5d2f4d5507677f4da763c4668d29b665a1e0f9a34bf71e9d0
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
require "csv"
|
|
4
4
|
|
|
5
|
-
include YARD::
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
include YARD::Markdown::ObjectListingHelper,
|
|
6
|
+
YARD::Markdown::ArefHelper,
|
|
7
|
+
YARD::Templates::Helpers::ModuleHelper
|
|
8
8
|
|
|
9
9
|
# Prepares the markdown serializer and renders each object page.
|
|
10
10
|
#
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
include YARD::
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
include YARD::Markdown::TagFormattingHelper,
|
|
4
|
+
YARD::Markdown::SectionAssemblyHelper,
|
|
5
|
+
YARD::Markdown::RelationshipSectionHelper,
|
|
6
|
+
YARD::Markdown::ObjectListingHelper,
|
|
7
|
+
YARD::Markdown::MethodPresentationHelper,
|
|
8
|
+
YARD::Markdown::LinkNormalizationHelper,
|
|
9
|
+
YARD::Markdown::HeadingHelper,
|
|
10
|
+
YARD::Markdown::DocumentationHelper,
|
|
11
|
+
YARD::Markdown::CollectionRenderingHelper,
|
|
12
|
+
YARD::Templates::Helpers::ModuleHelper
|
|
13
13
|
|
|
14
14
|
# Registers the sections rendered for a namespace markdown page.
|
|
15
15
|
#
|