neo4j-asciidoctor-extensions 0.0.2 → 0.0.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4a76564a648f37550de81012dd17b91d488e8791f217d5523c9d8f00b94f58a
|
4
|
+
data.tar.gz: cdb7b4e3c6e65ead430cdd7ef856ff8ec7257533f049460026c371bd7d6b5255
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8a83d07d04b37725b688e3b487b25ac96c5047fdbe29ab1222c6299347f0bf5c50f0da3820882aa09369aee708ffbd16d518ee858722cc5c4abecfbdaec9bbd
|
7
|
+
data.tar.gz: 61d3c1b09eb8c820200d143e805801e06e4257ebb6dc0a9b10545e53fe2df3ebd4d6c3a26789b245613bd783bbbbd5c65be104bc75cc7d75f76b5a542f028e3f
|
data/Gemfile.lock
CHANGED
@@ -4,5 +4,5 @@ require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal'
|
|
4
4
|
require_relative 'course_document_attributes/extension'
|
5
5
|
|
6
6
|
Asciidoctor::Extensions.register do
|
7
|
-
|
7
|
+
tree_processor Neo4j::AsciidoctorExtensions::CourseDocumentAttributesTreeProcessor
|
8
8
|
end
|
@@ -7,10 +7,10 @@ module Neo4j
|
|
7
7
|
module AsciidoctorExtensions
|
8
8
|
include Asciidoctor
|
9
9
|
|
10
|
-
# A
|
10
|
+
# A tree processor that adds attributes about the course.
|
11
11
|
# /!\ This extension is tightly coupled to the course publishing project and should not be used for other purposes /!\
|
12
12
|
#
|
13
|
-
class
|
13
|
+
class CourseDocumentAttributesTreeProcessor < Extensions::TreeProcessor
|
14
14
|
use_dsl
|
15
15
|
|
16
16
|
# TODO: this slug should be configurable
|