class IsoDoc::Generic::WordConvert

def default_file_locations(_options)

def default_file_locations(_options)
  {
    wordstylesheet: baselocation(configuration.wordstylesheet) ||
      html_doc_path("wordstyle.scss"),
    standardstylesheet: baselocation(configuration.standardstylesheet) ||
      html_doc_path("generic.scss"),
    header: baselocation(configuration.header) ||
      html_doc_path("header.html"),
    wordcoverpage: baselocation(configuration.wordcoverpage) ||
      html_doc_path("word_generic_titlepage.html"),
    wordintropage: baselocation(configuration.wordintropage) ||
      html_doc_path("word_generic_intro.html"),
    i18nyaml: (if configuration.i18nyaml.is_a?(String)
                 baselocation(configuration.i18nyaml)
               end),
    ulstyle: "l3",
    olstyle: "l2",
  }.transform_values { |v| v&.empty? ? nil : v }
end