comparison mupdf-source/thirdparty/extract/src/html.h @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
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