Class: Asciidoctor::Standoc::TermLookupCleanup

Inherits:
Object
  • Object
show all
Defined in:
lib/asciidoctor/standoc/term_lookup_cleanup.rb

Overview

Intelligent term lookup xml modifier

Constant Summary collapse

AUTOMATIC_GENERATED_ID_REGEXP =
/\A_/.freeze
EXISTING_TERM_REGEXP =
/\Aterm-/.freeze
EXISTING_SYMBOL_REGEXP =
/\Asymbol-/.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xmldoc, log) ⇒ TermLookupCleanup

Returns a new instance of TermLookupCleanup.



13
14
15
16
17
18
# File 'lib/asciidoctor/standoc/term_lookup_cleanup.rb', line 13

def initialize(xmldoc, log)
  @xmldoc = xmldoc
  @log = log
  @termlookup = { term: {}, symbol: {} }
  @idhash = {}
end

Instance Attribute Details

#logObject (readonly)

Returns the value of attribute log.



11
12
13
# File 'lib/asciidoctor/standoc/term_lookup_cleanup.rb', line 11

def log
  @log
end

#termlookupObject (readonly)

Returns the value of attribute termlookup.



11
12
13
# File 'lib/asciidoctor/standoc/term_lookup_cleanup.rb', line 11

def termlookup
  @termlookup
end

#xmldocObject (readonly)

Returns the value of attribute xmldoc.



11
12
13
# File 'lib/asciidoctor/standoc/term_lookup_cleanup.rb', line 11

def xmldoc
  @xmldoc
end

Instance Method Details

#callObject



20
21
22
23
24
25
# File 'lib/asciidoctor/standoc/term_lookup_cleanup.rb', line 20

def call
  @idhash = populate_idhash
  @termlookup = replace_automatic_generated_ids_terms
  set_termxref_tags_target
  concept_cleanup
end