Class: Metanorma::Plugin::Glossarist::Document

Inherits:
Object
  • Object
show all
Defined in:
lib/metanorma/plugin/glossarist/document.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDocument

Returns a new instance of Document.



13
14
15
16
# File 'lib/metanorma/plugin/glossarist/document.rb', line 13

def initialize
  @content = []
  @bibliographies = []
end

Instance Attribute Details

#bibliographiesObject

Returns the value of attribute bibliographies.



11
12
13
# File 'lib/metanorma/plugin/glossarist/document.rb', line 11

def bibliographies
  @bibliographies
end

#contentObject

Returns the value of attribute content.



11
12
13
# File 'lib/metanorma/plugin/glossarist/document.rb', line 11

def content
  @content
end

#file_systemObject

Returns the value of attribute file_system.



11
12
13
# File 'lib/metanorma/plugin/glossarist/document.rb', line 11

def file_system
  @file_system
end

Instance Method Details

#add_content(content, options = {}) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/metanorma/plugin/glossarist/document.rb', line 18

def add_content(content, options = {})
  @content << if options[:render]
                render_liquid(content, options)
              else
                content
              end
end

#create_liquid_environmentObject



45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/metanorma/plugin/glossarist/document.rb', line 45

def create_liquid_environment
  ::Liquid::Environment.new.tap do |liquid_env|
    liquid_env.register_tag(
      "with_glossarist_context",
      ::Metanorma::Plugin::Glossarist::Liquid::CustomBlocks::
      WithGlossaristContext,
    )
    liquid_env.register_filter(
      ::Metanorma::Plugin::Glossarist::Liquid::CustomFilters::Filters,
    )
  end
end

#render_liquid(file_content, options = {}) ⇒ Object

rubocop:disable Metrics/AbcSize



30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/metanorma/plugin/glossarist/document.rb', line 30

def render_liquid(file_content, options = {}) # rubocop:disable Metrics/AbcSize
  include_paths = [file_system, options[:template]].compact
  template = ::Liquid::Template
    .parse(file_content, environment: create_liquid_environment)
  template.registers[:file_system] = ::Metanorma::Plugin::Glossarist::Liquid::LocalFileSystem.new(
    include_paths, ["%s.liquid", "_%s.liquid", "_%s.adoc"]
  )
  rendered_template = template.render(strict_variables: false,
                                      error_mode: :warn)

  return rendered_template unless template.errors.any?

  raise template.errors.first.cause
end

#to_sObject



26
27
28
# File 'lib/metanorma/plugin/glossarist/document.rb', line 26

def to_s
  @content.compact.join("\n")
end