* Adding failing test case
* test runs and fails
* passing formatting test
* passing test
* refactoring moving different parts to their own files
* Refactoring - doc in prepareTemplateDOMTree
* Test of 2 formatted markers within same Text node passes
* passing test with {#each ...} and text before partially formatted
* Test with {/each} and text after partially formatted passing
* woops with proper test case
* test with partially formatted variable passes
30 lines
683 B
JavaScript
30 lines
683 B
JavaScript
//@ts-check
|
|
|
|
export {default as fillOdtTemplate} from './scripts/odf/templating/fillOdtTemplate.js'
|
|
export {getOdtTextContent} from './scripts/odf/odt/getOdtTextContent.js'
|
|
|
|
export { createOdsFile } from './scripts/createOdsFile.js'
|
|
|
|
export {
|
|
getODSTableRawContent,
|
|
|
|
// table-level exports
|
|
tableWithoutEmptyRows,
|
|
tableRawContentToValues,
|
|
tableRawContentToStrings,
|
|
tableRawContentToObjects,
|
|
|
|
// sheet-level exports
|
|
sheetRawContentToObjects,
|
|
sheetRawContentToStrings,
|
|
|
|
// row-level exports
|
|
rowRawContentToStrings,
|
|
isRowNotEmpty,
|
|
|
|
// cell-level exports
|
|
cellRawContentToStrings,
|
|
convertCellValue
|
|
} from './scripts/shared.js'
|
|
|