We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ooxast-util-to-unified-latex] do something with the styles
const styles = select('w\:styles', node)
if (styles) {
h.styles = all(h, styles)
}
parsers/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/document.ts
Line 25 in 65d824f
import { all } from '../all' import { H, Handle } from '../types' import { Body, Document, Endnotes, Footnotes } from 'ooxast' import { select } from 'xast-util-select' import { notes } from '../util/notes' import { convertElement } from 'xast-util-is-element' const isFootnotes = convertElement<Footnotes>('w:footnotes') const isEndnotes = convertElement<Endnotes>('w:endnotes') export const document: Handle = (h: H, node: Document) => { h.simpleParagraph = true const body = select('w\\:body', node) const foots = select('w\\:footnotes', node) if (foots && isFootnotes(foots)) { h.footnotes = notes(h, foots) } const endnotes = select('w\\:endnotes', node) if (endnotes && isEndnotes(endnotes)) { h.endnotes = notes(h, endnotes) } // TODO: [ooxast-util-to-unified-latex] do something with the styles // const styles = select('w\\:styles', node) // if (styles) { // h.styles = all(h, styles) // } const relations = select('w\\:relationships', node)
51dd9f72ae3918d8eed612857d20153c7db80d31
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[ooxast-util-to-unified-latex] do something with the styles
const styles = select('w\:styles', node)
if (styles) {
h.styles = all(h, styles)
}
parsers/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/document.ts
Line 25 in 65d824f
51dd9f72ae3918d8eed612857d20153c7db80d31
The text was updated successfully, but these errors were encountered: