├── .rspec ├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── ci.yml ├── spec ├── fixtures │ ├── docinfo_filter │ │ ├── docinfo.html │ │ ├── docinfo-footer.html │ │ ├── docinfo-header.html │ │ ├── docinfo-custom.html │ │ ├── _config.yml │ │ ├── index.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── basic_site │ │ ├── _config.yml │ │ ├── no-doctitle.adoc │ │ ├── no-liquid.adoc │ │ ├── docid.adoc │ │ ├── with-header-only.adoc │ │ ├── without-front-matter-header.adoc │ │ ├── empty-layout.adoc │ │ ├── nil-layout.adoc │ │ ├── standalone-a.adoc │ │ ├── auto-layout.adoc │ │ ├── bare-header.adoc │ │ ├── custom-layout.adoc │ │ ├── standalone-b.adoc │ │ ├── with-front-matter-header-only.adoc │ │ ├── empty-page-attribute.adoc │ │ ├── liquid-enabled-asciidoc-header.adoc │ │ ├── liquid-enabled-front-matter.adoc │ │ ├── not-published.adoc │ │ ├── with-front-matter-header.adoc │ │ ├── section-with-id-and-role.adoc │ │ ├── subdir │ │ │ └── page-in-subdir.adoc │ │ └── _layouts │ │ │ ├── custom.html │ │ │ └── page.html │ ├── read_error │ │ ├── _config.yml │ │ └── unreadable.adoc │ ├── default_config │ │ └── _config.yml │ ├── tocify_filter │ │ ├── _config.yml │ │ ├── index.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── asciidocify_filter │ │ ├── _config.yml │ │ ├── index.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── fallback_to_default_layout │ │ ├── home.adoc │ │ ├── _blueprints │ │ │ └── blueprint.adoc │ │ ├── _posts │ │ │ └── 2016-01-01-post.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ └── default.html │ ├── include_relative_to_docdir │ │ ├── _child.adoc │ │ ├── parent.adoc │ │ ├── about │ │ │ ├── _people.adoc │ │ │ └── index.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ └── default.html │ ├── with_posts │ │ ├── _posts │ │ │ ├── 2016-05-31-automatic-title.adoc │ │ │ ├── 2016-01-05-nil-layout.adoc │ │ │ ├── 2016-01-02-empty-layout.adoc │ │ │ ├── 2016-01-03-auto-layout.adoc │ │ │ ├── 2016-01-04-custom-layout.adoc │ │ │ ├── 2016-04-01-show-me-the-title.adoc │ │ │ ├── 2016-01-01-welcome.adoc │ │ │ ├── 2016-06-15-post-with-date.adoc │ │ │ ├── 2016-02-01-post-with-categories.adoc │ │ │ ├── 2016-03-02-post-with-excerpt-doctype.adoc │ │ │ ├── 2016-03-01-post-with-excerpt.adoc │ │ │ ├── 2016-07-15-post-with-date-and-tz.adoc │ │ │ ├── 2016-03-03-post-with-synopsis.adoc │ │ │ ├── 2016-02-02-post-with-singular-vars.adoc │ │ │ └── 2016-07-20-post-with-date-in-revision-line.adoc │ │ ├── _drafts │ │ │ └── a-draft-post.adoc │ │ ├── _config.yml │ │ ├── _layouts │ │ │ ├── custom.html │ │ │ └── post.html │ │ └── index.html │ ├── posts_with_excerpts │ │ ├── plain │ │ │ └── _config.yml │ │ ├── _posts │ │ │ ├── 2018-01-08-header-only.adoc │ │ │ ├── 2018-01-03-single-paragraph-only.adoc │ │ │ ├── 2018-01-09-no-liquid.adoc │ │ │ ├── 2018-01-01-header-and-single-paragraph.adoc │ │ │ ├── 2018-01-10-with-liquid.adoc │ │ │ ├── 2018-01-11-standalone-layout.adoc │ │ │ ├── 2018-01-04-multiple-paragraphs-only.adoc │ │ │ ├── 2018-01-07-blank-excerpt.adoc │ │ │ ├── 2018-01-02-header-and-multiple-paragraphs.adoc │ │ │ ├── 2018-01-05-excerpt-in-header.adoc │ │ │ └── 2018-01-06-excerpt-in-front-matter.adoc │ │ ├── with_plugin │ │ │ └── _config.yml │ │ ├── _layouts │ │ │ └── post.html │ │ └── index.html │ ├── include_relative_to_source │ │ ├── about │ │ │ ├── _people.adoc │ │ │ └── index.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ └── default.html │ ├── site_wide_fallback_layout │ │ ├── not-set.adoc │ │ ├── in-asciidoc-header.adoc │ │ ├── in-front-matter.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ ├── simple.html │ │ │ └── default.html │ ├── front_matter_defaults │ │ ├── docs │ │ │ └── page.adoc │ │ ├── page.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ ├── docs.html │ │ │ └── general.html │ ├── include_relative_to_root │ │ ├── source │ │ │ ├── about │ │ │ │ ├── _people.adoc │ │ │ │ └── index.adoc │ │ │ └── _layouts │ │ │ │ └── default.html │ │ └── _config.yml │ ├── explicit_site_time │ │ ├── home.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ └── default.html │ ├── unpublished_site_config │ │ ├── _config.yml │ │ └── not-published.adoc │ ├── require_front_matter_header │ │ ├── without-front-matter-header.adoc │ │ ├── with-front-matter-header.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ └── default.html │ ├── safe_mode │ │ ├── _config.yml │ │ ├── home.adoc │ │ └── _layouts │ │ │ └── home.html │ ├── blank_page_attribute_prefix │ │ ├── _config.yml │ │ ├── explicit-permalink.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── xhtml_syntax │ │ ├── home.adoc │ │ ├── images │ │ │ └── sunset.jpg │ │ └── _config.yml │ ├── alternate_page_attribute_prefix │ │ ├── _config.yml │ │ ├── explicit-permalink.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── imagesdir_relative_to_root │ │ ├── _config.yml │ │ └── with_baseurl │ │ │ └── _config.yml │ ├── site_wide_standalone_layout │ │ ├── _config.yml │ │ └── standalone.adoc │ ├── with_custom_collection │ │ ├── _blueprints │ │ │ ├── blueprint-a.adoc │ │ │ └── blueprint-b.adoc │ │ ├── _config.yml │ │ └── _layouts │ │ │ ├── default.html │ │ │ └── blueprint.html │ ├── with_custom_private_collection │ │ ├── _tips │ │ │ ├── current-branch.adoc │ │ │ └── needle-in-haystack.adoc │ │ ├── _config.yml │ │ └── index.html │ ├── legacy_config │ │ └── _config.yml │ ├── implicit_page_variables │ │ ├── string │ │ │ └── _config.yml │ │ ├── single_line_array │ │ │ └── _config.yml │ │ ├── array │ │ │ └── _config.yml │ │ ├── index.adoc │ │ └── _layouts │ │ │ └── default.html │ ├── attributes_as_array │ │ └── _config.yml │ ├── custom_excerpt_separator │ │ ├── _config.yml │ │ ├── _posts │ │ │ ├── 2018-01-02-asciidoc.adoc │ │ │ └── 2018-01-01-markdown.md │ │ ├── _layouts │ │ │ └── post.html │ │ └── index.html │ ├── pygments_code_highlighting │ │ ├── _config.yml │ │ ├── page-with-code.adoc │ │ └── _layouts │ │ │ └── page.html │ ├── merged_attributes │ │ ├── no-merge.adoc │ │ ├── merge.adoc │ │ ├── _layouts │ │ │ └── default.html │ │ └── _config.yml │ ├── hybrid_config │ │ └── _config.yml │ └── attributes_as_hash │ │ └── _config.yml └── spec_helper.rb ├── .simplecov ├── Rakefile ├── lib ├── jekyll-asciidoc │ ├── version.rb │ ├── jekyll_ext.rb │ ├── mixins.rb │ ├── jekyll_ext │ │ ├── renderer │ │ │ └── layouts.rb │ │ ├── site │ │ │ └── find_generator_instance.rb │ │ └── drops │ │ │ └── drop.rb │ ├── utils.rb │ ├── excerpt.rb │ ├── filters.rb │ ├── integrator.rb │ └── converter.rb └── jekyll-asciidoc.rb ├── .deep_cover.rb ├── .gitignore ├── .yardopts ├── docs ├── modules │ └── ROOT │ │ ├── pages │ │ ├── blog.adoc │ │ ├── disabling-pub.adoc │ │ ├── glossary.adoc │ │ ├── safe-mode.adoc │ │ ├── asciidoctor.adoc │ │ ├── drafts.adoc │ │ ├── about.adoc │ │ ├── classifying.adoc │ │ ├── community.adoc │ │ ├── index.adoc │ │ ├── issues.adoc │ │ ├── hard-line-breaks.adoc │ │ ├── time.adoc │ │ ├── asciidoc.adoc │ │ ├── build.adoc │ │ ├── base-dir.adoc │ │ ├── doctitle.adoc │ │ ├── configuration.adoc │ │ ├── layout.adoc │ │ ├── intrinsic-attributes.adoc │ │ ├── liquid-attributes.adoc │ │ ├── liquid.adoc │ │ ├── excerpts.adoc │ │ ├── pages.adoc │ │ ├── stem.adoc │ │ ├── extensions.adoc │ │ ├── implicit-page-vars.adoc │ │ ├── templates.adoc │ │ ├── installation.adoc │ │ ├── global-page-attributes.adoc │ │ ├── page-attributes.adoc │ │ ├── liquid-filters.adoc │ │ ├── development.adoc │ │ ├── publishing.adoc │ │ ├── supplemental-assets.adoc │ │ └── asciidoctor-diagram.adoc │ │ └── nav.adoc └── antora.yml ├── tasks ├── bundler.rake ├── rubocop.rake ├── rspec.rake └── version.rb ├── Gemfile ├── LICENSE ├── release.sh ├── jekyll-asciidoc.gemspec ├── coding-style-guide.adoc └── CHANGELOG.adoc /.rspec: -------------------------------------------------------------------------------- 1 | --require ./spec/spec_helper 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: asciidoctor 2 | -------------------------------------------------------------------------------- /spec/fixtures/docinfo_filter/docinfo.html: -------------------------------------------------------------------------------- 1 |
{{ page.summary | asciidocify: 'inline' }}
9 |{{ page.asciidocifyme | asciidocify 'inline' }}
10 | {% endif %} 11 | {{ content }} 12 |{{ page.surprising }} {{ page.un-expected }}{{ page.not-implicit }}{{ page.not_implicit }} {{ page.when }}
9 |{{ post.excerpt }}
16 |{{ post.excerpt }}
16 |12 | 13 |
14 |{{ page.attr.one }}
11 |{{ page.attr.two.two-sub-one[0]}}
12 |{{ page.attr.two.two-sub-one[1]}}
13 |{{ page.attr.two.two-sub-one[2]}}
14 |{{ page.attr.two.two-sub-two.two-sub-two-sub-one}}
15 |{{ page.attr.two.two-sub-two.two-sub-two-sub-two}}
16 |{{ page.attr.two.two-sub-three.two-sub-three-sub-one}}
17 |{{ page.attr.three }}
18 |{{ page.complex }}
19 |{{ page.implicit1 }}
20 |{{ page.implicit2 }}
21 |