Method: IsoDoc::Convert#init_processing

Defined in:
lib/isodoc/init.rb

#init_processingObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/isodoc/init.rb', line 78

def init_processing
  @termdomain = ""
  @termexample = false
  @note = false
  @sourcecode = false
  @footnotes = []
  @comments = []
  @in_footnote = false
  @in_comment = false
  @in_table = false
  @in_figure = false
  @seen_footnote = Set.new
  @c = HTMLEntities.new
  @openmathdelim = "`"
  @closemathdelim = "`"
  @maxwidth = 1200
  @maxheight = 800
  @bookmarks_allocated = { "X" => true }
  @fn_bookmarks = {}
end