Module: IsoDoc::Jis::Init
- Included in:
- HtmlConvert, PresentationXMLConvert, WordConvert
- Defined in:
- lib/isodoc/jis/init.rb
Instance Method Summary collapse
- #bibrenderer(options = {}) ⇒ Object
- #i18n_init(lang, script, locale, i18nyaml = nil) ⇒ Object
- #metadata_init(lang, script, locale, labels) ⇒ Object
- #omit_docid_prefix(prefix) ⇒ Object
- #std_docid_semantic(text) ⇒ Object
- #xref_init(lang, script, _klass, labels, options) ⇒ Object
Instance Method Details
#bibrenderer(options = {}) ⇒ Object
23 24 25 26 |
# File 'lib/isodoc/jis/init.rb', line 23 def bibrenderer( = {}) ::Relaton::Render::Jis::General.new(.merge(language: @lang, i18nhash: @i18n.get)) end |
#i18n_init(lang, script, locale, i18nyaml = nil) ⇒ Object
18 19 20 21 |
# File 'lib/isodoc/jis/init.rb', line 18 def i18n_init(lang, script, locale, i18nyaml = nil) @i18n = I18n.new(lang, script, locale: locale, i18nyaml: i18nyaml || @i18nyaml) end |
#metadata_init(lang, script, locale, labels) ⇒ Object
8 9 10 |
# File 'lib/isodoc/jis/init.rb', line 8 def (lang, script, locale, labels) @meta = Metadata.new(lang, script, locale, labels) end |
#omit_docid_prefix(prefix) ⇒ Object
28 29 30 31 32 |
# File 'lib/isodoc/jis/init.rb', line 28 def omit_docid_prefix(prefix) return true if prefix.nil? || prefix.empty? super || %w(JIS).include?(prefix) end |
#std_docid_semantic(text) ⇒ Object
34 35 36 |
# File 'lib/isodoc/jis/init.rb', line 34 def std_docid_semantic(text) text end |
#xref_init(lang, script, _klass, labels, options) ⇒ Object
12 13 14 15 16 |
# File 'lib/isodoc/jis/init.rb', line 12 def xref_init(lang, script, _klass, labels, ) @xrefs = Xref.new(lang, script, HtmlConvert.new(language: lang, script: script), labels, ) end |