comparison mupdf-source/thirdparty/extract/src/html.h @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 #ifndef ARTIFEX_EXTRACT_HTML_H
2 #define ARTIFEX_EXTRACT_HTML_H
3
4 #include "extract/extract.h"
5
6 /* Only for internal use by extract code. */
7
8 /* Things for creating docx files. */
9
10 int extract_document_to_html_content(
11 extract_alloc_t *alloc,
12 document_t *document,
13 int rotation,
14 int images,
15 extract_astring_t *content
16 );
17 /* Makes *o_content point to a string containing all paragraphs in *document in
18 docx XML format.
19
20 This string can be passed to extract_docx_content_item() or
21 extract_docx_write_template() to be inserted into a docx archive's
22 word/document.xml. */
23
24
25 #endif