poxy 0.19.4__py3-none-any.whl → 0.19.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,594 +1,600 @@
1
- Metadata-Version: 2.1
2
- Name: poxy
3
- Version: 0.19.4
4
- Summary: Documentation generator for C++.
5
- Author-email: Mark Gillard <mark.gillard@outlook.com.au>
6
- License: MIT
7
- Project-URL: Source, https://github.com/marzer/poxy
8
- Project-URL: Tracker, https://github.com/marzer/poxy/issues
9
- Project-URL: Funding, https://github.com/sponsors/marzer
10
- Keywords: c++,doxygen,documentation
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Programming Language :: C++
14
- Classifier: Topic :: Documentation
15
- Classifier: Topic :: Software Development :: Code Generators
16
- Classifier: Topic :: Software Development :: Documentation
17
- Classifier: Topic :: Utilities
18
- Requires-Python: >=3.7
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE.txt
21
- Requires-Dist: misk>=0.8.1
22
- Requires-Dist: bs4
23
- Requires-Dist: jinja2
24
- Requires-Dist: pygments
25
- Requires-Dist: html5lib
26
- Requires-Dist: lxml
27
- Requires-Dist: tomli
28
- Requires-Dist: schema!=0.7.5
29
- Requires-Dist: requests
30
- Requires-Dist: trieregex
31
- Requires-Dist: colorama
32
-
33
- # poxy
34
-
35
- Documentation generator for C++ based on Doxygen and [mosra/m.css](https://mcss.mosra.cz/).
36
-
37
- [![Sponsor](https://img.shields.io/static/v1?label=sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86&style=flat-square)][sponsor]
38
- [![Gitter](https://badges.gitter.im/marzer/poxy.svg)][gitter]
39
-
40
- - [Overview](#overview)
41
- - [Example](#example)
42
- - [Installation](#installation)
43
- - [Usage](#usage)
44
- - [Config file options](#config-file-options)
45
- - [Migrating from Doxygen](#migrating-from-doxygen)
46
- - [Why the name "Poxy"?](#why-the-name-poxy)
47
- - [License and Attribution](#license-and-attribution)
48
-
49
- <br><br>
50
-
51
- ## Overview
52
-
53
- [mosra/m.css] is a Doxygen-based documentation generator that significantly improves on Doxygen's default output
54
- by controlling some of Doxygen's more unruly options, supplying it's own slick HTML+CSS generation and adding
55
- a fantastic live search feature. **Poxy** builds upon both by:
56
-
57
- - Moving the configuration out into a TOML file
58
- - Preprocessing the Doxygen XML to fix a bunch of Doxygen _~~bugs~~_ quirks
59
- - Postprocessing the generated HTML to improve syntax highlighting and add a few other improvements
60
- - Allowing source, image and example directories to be recursive or shallow on a per-directory basis
61
- - Automatically defining C++ language feature macros based on your project's target C++ version
62
- - Automatically integrating the cppreference.com doxygen tagfile
63
- - Providing a number of additional built-in doxygen `@alias` commands
64
- - Giving more control over the HTML inline using square-bracket `[tags][/tags]`
65
- - Adding a switchable light theme
66
- - Adding support for C++20 concepts
67
- - Self-hosting fonts to reduce external HTTP requests
68
- - Inlining SVGs so they can take advantage of [`currentColor`]
69
- - Quite a bit more!
70
-
71
- <br><br>
72
-
73
- ## Example
74
-
75
- The homepage + documentation for [toml++] is built using poxy:
76
-
77
- - homepage: [marzer.github.io/tomlplusplus](https://marzer.github.io/tomlplusplus/)
78
- - config file: [`poxy.toml`](https://github.com/marzer/tomlplusplus/blob/master/docs/poxy.toml)
79
-
80
- <br><br>
81
-
82
- ## Installation
83
-
84
- ### Prerequisites:
85
-
86
- - Python 3.7+
87
- - Doxygen 1.8.20+ (must be visible on system path)
88
-
89
- ### Then:
90
-
91
- ```
92
- pip install poxy
93
- ```
94
-
95
- <br><br>
96
-
97
- ## Usage
98
-
99
- Poxy is a command-line application.
100
-
101
- ```
102
- usage: poxy [-h] [-v] [--html | --no-html] [--ppinclude <regex>] [--ppexclude <regex>]
103
- [--theme {light,dark,custom}] [--threads N] [--version] [--xml | --no-xml]
104
- [--werror | --no-werror] [--bug-report] [--git-tags]
105
- [--squash-patches | --no-squash-patches] [--min-version <version>]
106
- [config]
107
-
108
- _ __ _____ ___ _
109
- | '_ \ / _ \ \/ / | | |
110
- | |_) | (_) > <| |_| |
111
- | .__/ \___/_/\_\\__, |
112
- | | __/ |
113
- |_| |___/ v0.17.0 - github.com/marzer/poxy
114
-
115
- Generate fancy C++ documentation.
116
-
117
- positional arguments:
118
- config path to poxy.toml or a directory containing it (default: .)
119
-
120
- options:
121
- -h, --help show this help message and exit
122
- -v, --verbose enable very noisy diagnostic output
123
- --html, --no-html specify whether HTML output is required
124
- --ppinclude <regex> pattern matching HTML file names to post-process (default: all)
125
- --ppexclude <regex> pattern matching HTML file names to exclude from post-processing (default: None)
126
- --theme {light,dark,custom}
127
- sets the default visual theme (default: read from config)
128
- --threads N set the number of threads to use (default: automatic)
129
- --version print the version and exit
130
- --xml, --no-xml specify whether XML output is required
131
- --werror, --no-werror
132
- treat warnings as errors (default: read from config)
133
- --bug-report captures all output in a zip file for easier bug reporting.
134
- --git-tags add git-tag-based semver version switcher to the generated HTML
135
- --squash-patches, --no-squash-patches
136
- when using --git-tags and two version tags differ by a patch number,
137
- generate docs for the highest one only (default: True)
138
- --min-version <version>
139
- sets the minimum version number to emit when using --git-tags,
140
- or a negative integer to mean "the last N versions". (default: None)
141
- ```
142
-
143
- The basic three-step to using Poxy is similar to Doxygen:
144
-
145
- 1. Create your `poxy.toml` (Poxy's answer to the `Doxyfile`)
146
- 2. Invoke Poxy on it: `poxy path/to/poxy.toml` (or simply `poxy` if the cwd contains the config file)
147
- 3. See your HTML documentation `<cwd>/html`
148
-
149
- <br><br>
150
-
151
- ## Config file options
152
-
153
- For a self-contained `poxy.toml` example to copy and paste from,
154
- see [the one used by toml++](https://github.com/marzer/tomlplusplus/blob/master/docs/poxy.toml).
155
-
156
- For a full list of options, with full descriptions, schemas and usage examples, see the [Configuration options] wiki page.
157
-
158
- <br><br>
159
-
160
- ## Migrating from Doxygen
161
-
162
- Generally the relevant `Doxyfile` options will have a corresponding `poxy.toml` option
163
- (or be replaced by something more specific) so migration is largely a transcription and box-ticking exercise,
164
- though there are a few gotchas:
165
-
166
- #### **⚠&#xFE0F; The majority of Doxygen's options are controlled by Poxy**
167
-
168
- Many of Doxygen's various knobs and switches are manually overridden by Poxy, and are not configurable.
169
- **This is intentional!** Doxygen tends to break in hilarious and fantastic ways from one release to the next;
170
- reducing it to a very 'locked-down' back-end minimizes the damage future regressions can do, allowing me to
171
- keep most debugging python-side.
172
-
173
- If there is some Doxygen feature you would like exposed in Poxy, please create a [feature request].
174
-
175
- #### **⚠&#xFE0F; All relative input paths are relative to the config file, _not_ CWD**
176
-
177
- This is in contrast to Doxygen, which has all paths be relative to the Doxygen process' current working directory
178
- regardless of where the Doxyfile was. I've always personally found that to be nothing but a source of error,
179
- so Poxy does away with it.
180
-
181
- #### **⚠&#xFE0F; Output is always emitted to CWD**
182
-
183
- Poxy always emits HTML to `<cwd>/html` and XML to `<cwd>/xml`. You cannot use your config file to specify where any
184
- output will be placed - use your command-line environment for this purpose instead by changing the CWD.
185
- This is to eliminate nasty surprises brought on by goofy config file decisions and help with portability.
186
-
187
- #### **⚠&#xFE0F; Poxy config files are self-contained**
188
-
189
- There is no equivalent to Doxygen's `@INCLUDE`. If your project is structured in such a way that a
190
- multi-level Doxyfile hierarchy is necessary, Poxy isn't for you.
191
-
192
- <br><br>
193
-
194
- ## Why the name "Poxy"?
195
-
196
- Originally it was simply called "dox", but there's already a C++ documentation project with that name,
197
- so I smashed "python" and "dox" together and this is what I came up with.
198
-
199
- Also "poxy" can be slang for cheap, inferior, poor quality, etc., which I thought was funny.
200
-
201
- <br><br>
202
-
203
- ## License and Attribution
204
-
205
- This project is published under the terms of the [MIT license](https://github.com/marzer/poxy/blob/main/LICENSE.txt).
206
-
207
- Significant credit must go to Vladimír Vondruš ([mosra]) and his amazing [m.css] Doxygen theme.
208
- Poxy bundles a fork of m.css, used per the [MIT/Expat license](https://github.com/marzer/poxy/blob/main/poxy/data/m.css/COPYING)
209
- (which can also be found in the installed python package).
210
-
211
- [m.css]: https://mcss.mosra.cz/documentation/doxygen/
212
- [mosra]: https://github.com/mosra
213
- [mosra/m.css]: https://mcss.mosra.cz/documentation/doxygen/
214
- [toml++]: https://marzer.github.io/tomlplusplus/
215
- [c++ feature test macros]: https://en.cppreference.com/w/cpp/feature_test
216
- [configuration options]: https://github.com/marzer/poxy/wiki/Configuration-options
217
- [feature request]: https://github.com/marzer/poxy/issues/new
218
- [`currentcolor`]: https://gomakethings.com/currentcolor-and-svgs
219
- [gitter]: https://gitter.im/marzer/poxy
220
- [sponsor]: https://github.com/sponsors/marzer
221
-
222
- # Changelog
223
-
224
- ## v0.19.4 - 2024-12-24
225
-
226
- - fixed minor issues on Python 3.8
227
-
228
- ## v0.19.3 - 2024-11-11
229
-
230
- - fixed crash with nested C-style enums without a name (#39) (@tim-janik)
231
- - fixed `POXY_IMPLEMENTATION_DETAIL_IMPL` appearing in HTML in some circumstances
232
-
233
- ## v0.19.1 - 2024-10-30
234
-
235
- - fixed `ModuleNotFoundError` error in Python 3.12 (#38) (@dekinet)
236
-
237
- ## v0.19.0 - 2024-09-15
238
-
239
- - fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
240
- - added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
241
- - added auto-linking for various cppreference.com pages
242
- - made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
243
- - updated m.css
244
-
245
- ## v0.18.0 - 2024-08-03
246
-
247
- - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
248
-
249
- ## v0.17.2 - 2024-06-16
250
-
251
- - fixed qualified return types appearing squashed together without whitespace in some circumstances
252
- - fixed performance regression in post-process step
253
- - updated m.css
254
- - minor style fixes
255
-
256
- ## v0.17.1 - 2024-06-14
257
-
258
- - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
259
-
260
- ## v0.17.0 - 2024-04-21
261
-
262
- - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
263
-
264
- ## v0.16.0 - 2024-01-28
265
-
266
- - added multi-version mode argument `--git-tags`
267
- - added colour to output
268
-
269
- ## v0.15.0 - 2023-12-08
270
-
271
- - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
272
- - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
273
-
274
- ## v0.14.0 - 2023-11-25
275
-
276
- - added the use of `*` wildcards in `implementation_headers`
277
-
278
- ## v0.13.9 - 2023-09-10
279
-
280
- - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
281
-
282
- ## v0.13.8 - 2023-09-09
283
-
284
- - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
285
-
286
- ## v0.13.7 - 2023-08-17
287
-
288
- - fixed minor syntax highlighting issues
289
-
290
- ## v0.13.6 - 2023-08-10
291
-
292
- - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
293
-
294
- ## v0.13.5 - 2023-08-09
295
-
296
- - fixed `--bug-report` regression (#29) (@wroyca)
297
-
298
- ## v0.13.4 - 2023-08-06
299
-
300
- - fixed excessive `template<>` noise in details views
301
-
302
- ## v0.13.3 - 2023-08-01
303
-
304
- - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
305
-
306
- ## v0.13.2 - 2023-07-31
307
-
308
- - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
309
- - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
310
- - minor style fixes
311
-
312
- ## v0.13.1 - 2023-07-29
313
-
314
- - fixed crash regression with Doxygen 1.9.7
315
- - fixed issues with \[tag\] substitution
316
- - minor style fixes
317
-
318
- ## v0.13.0 - 2023-07-28
319
-
320
- - migrated to `pyproject.toml`
321
- - fixed footer being off-center (#24) (@wroyca)
322
- - fixed redundant `auto` in trailing return types (#26) (@wroyca)
323
- - added config option `sponsor`
324
- - added config option `twitter`
325
-
326
- ## v0.12.7 - 2023-07-27
327
-
328
- - allowed the use of square-bracket \[tags\] in more places
329
-
330
- ## v0.12.6 - 2023-07-25
331
-
332
- - fixed overlong `template<>` lines in summary views
333
- - fixed function parameter names greedily wrapping in details tables
334
-
335
- ## v0.12.5 - 2023-07-20
336
-
337
- - fixed overlong `template<>` lines in page headers (they now wrap)
338
-
339
- ## v0.12.4 - 2023-03-23
340
-
341
- - fixed changelog not auto-linking with some versions of Doxygen
342
-
343
- ## v0.12.3 - 2023-02-09
344
-
345
- - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
346
-
347
- ## v0.12.2 - 2023-02-08
348
-
349
- - switched default TOML lib to `tomli`
350
-
351
- ## v0.12.1 - 2022-11-22
352
-
353
- - fixed `github` and `gitlab` config options not accepting periods (`.`)
354
-
355
- ## v0.12.0 - 2022-11-13
356
-
357
- - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
358
- - added command-line option `--bug-report`
359
- - improved diagnostic text in some areas
360
-
361
- ## v0.11.1 - 2022-10-23
362
-
363
- - fixed crash when using `<a>` tags in navbar
364
-
365
- ## v0.11.0 - 2022-10-21
366
-
367
- - added syntax highlighting for functions
368
- - improved syntax highlighting of typenames
369
-
370
- ## v0.10.2 - 2022-10-16
371
-
372
- - fixed crash when tagfile is disabled
373
- - fixed a few syntax highlighting edge-cases
374
- - fixed non-determinism in XML output formatting
375
- - improved performance of syntax highlighting post-process
376
- - minor style fixes
377
-
378
- ## v0.10.1 - 2022-10-15
379
-
380
- - minor style fixes
381
-
382
- ## v0.10.0 - 2022-10-14
383
-
384
- - fixed `static` keyword sometimes appearing twice on variables
385
- - fixed `constexpr` keyword sometimes leaking into variable type
386
- - fixed newer versions of pygments adding unnecessary markup to whitespace
387
- - fixed malformed trailing return types in some circumstances
388
- - fixed changelog page sometimes not having a table-of-contents
389
- - added support for C++20's `constinit`
390
- - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
391
- - added command-line options `--html`, `--no-html`
392
- - added command-line options `--xml`, `--no-xml`
393
- - added command-line option `--no-werror`
394
- - added `CHANGES` to the set of candidate changelog filenames
395
- - deprecated command-line option `--xmlonly`
396
- - removed command-line option `--doxygen`
397
-
398
- ## v0.9.1 - 2022-10-04
399
-
400
- - fixed SVG inlining not preserving original image class attributes
401
- - fixed `ValueError` when reading some SVG files
402
- - fixed `navbar` option allowing duplicates
403
- - fixed custom navbar items always being transformed to lowercase
404
- - fixed navbar generating links to empty pages
405
- - added `concepts` to the default set of links in `navbar`
406
- - added `navbar` values `all` and `default`
407
- - reduced I/O churn during HTML post-processing
408
- - removed command-line option `--dry`
409
-
410
- ## v0.9.0 - 2022-10-03
411
-
412
- - added support for C++20 concepts
413
-
414
- ## v0.8.2 - 2022-10-01
415
-
416
- - added post-process to inline all local SVGs
417
- - minor style fixes
418
-
419
- ## v0.8.1 - 2022-09-30
420
-
421
- - minor style fixes
422
-
423
- ## v0.8.0 - 2022-09-29
424
-
425
- - added config option `gitlab` (#13) (@wroyca)
426
- - added ixx module extension in source patterns (#11) (@wroyca)
427
- - added support for multi-codepoint emojis
428
- - improved `doxygen.exe` location discovery on Windows
429
- - improved `CHANGELOG` location discovery
430
- - moved all poxy assets in the generated HTML to `html/poxy`
431
- - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
432
- - removed ability to override m.css implementation
433
- - removed legacy support for reading config options from neighbouring Doxyfiles
434
- - overhauled the light theme
435
- - many minor style fixes and tweaks
436
-
437
- ## v0.7.1 - 2022-08-17
438
-
439
- - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
440
-
441
- ## v0.7.0 - 2022-08-16
442
-
443
- - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
444
- - added `theme` command-line option
445
- - added `html_header` config option option
446
- - added automatic generation of github links in changelog when config option `github` is set
447
- - added new light theme
448
- - added dynamic switch for dark/light theme
449
- - removed text from github icon on navbar (#5) (@wroyca)
450
- - removed excessive spacing between article sections (#5) (@wroyca)
451
- - many minor style fixes and tweaks
452
-
453
- ## v0.6.1 - 2022-08-16
454
-
455
- - fixed multi-row navbar occluding page content (#3) (@wroyca)
456
-
457
- ## v0.6.0 - 2022-08-14
458
-
459
- - fixed malformed error messages in some circumstances
460
- - added builtin C++ standard macros for C++23
461
- - added `changelog` config option
462
- - updated cppreference.com tagfile
463
-
464
- ## v0.5.7 - 2022-05-17
465
-
466
- - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
467
-
468
- ## v0.5.6 - 2022-05-14
469
-
470
- - fixed path error when using `--dry`
471
- - fixed `friend` keyword sometimes leaking into function return types
472
- - added additional language code block aliases
473
- - added `--nocleanup` to `--help` output
474
- - added support for C++20's `consteval` keyword
475
-
476
- ## v0.5.5 - 2022-04-16
477
-
478
- - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
479
-
480
- ## v0.5.4 - 2022-04-15
481
-
482
- - updated m.css
483
- - updated emoji database
484
-
485
- ## v0.5.3 - 2021-12-12
486
-
487
- - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
488
- - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
489
-
490
- ## v0.5.2 - 2021-11-02
491
-
492
- - fixed over-eager link-replacement for internal `#anchor` links
493
- - added command-line options `--ppinclude` and `--ppexclude`
494
-
495
- ## v0.5.1 - 2021-10-09
496
-
497
- - fixed over-eager link replacement causing text to be deleted
498
-
499
- ## v0.5.0 - 2021-09-11
500
-
501
- - fixed a crash during HTML post-processing
502
- - fixed `implementation_headers` not working when paths use backslashes
503
- - added warnings when `implementation_headers` doesn't match anything
504
-
505
- ## v0.4.5 - 2021-06-08
506
-
507
- - added command-line option `--xmlonly`
508
-
509
- ## v0.4.3 - 2021-05-31
510
-
511
- - fixed regression in `[code_blocks]` functionality
512
- - fixed minor issues in syntax highlighter
513
- - added symbols from doxygen tagfiles to the syntax highlighter
514
- - minor style tweaks
515
-
516
- ## v0.4.1 - 2021-05-30
517
-
518
- - fixed `.dirs` being glommed as source paths
519
- - added config option `scripts`
520
- - added config option `stylesheets`
521
- - added config option `jquery`
522
- - added `custom` theme
523
- - added ability to use `HOME.md` as main page
524
- - added additional fix for inline `<code>` blocks
525
- - added `.poxy-toc` to table-of-contents elements
526
- - added floating page table-of-contents
527
- - removed m.css favicon fallback
528
- - made improvements to the `light` and `dark` themes
529
- - updated C++ doxygen tagfile
530
-
531
- ## v0.4.0 - 2021-05-29
532
-
533
- - added config option `theme`
534
- - added version number to CSS and javascript filenames to prevent browser cache issues
535
- - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
536
- - added `POXY_IGNORE(...)` magic macro
537
- - fixed alignment of nested images inside detail blocks
538
-
539
- ## v0.3.4 - 2021-05-28
540
-
541
- - added basic `using` alias detection to syntax highlighter
542
- - added missing badges for C++23, 26 and 29
543
-
544
- ## v0.3.3 - 2021-05-23
545
-
546
- - fixed sorting of namespace and group members
547
- - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
548
- - added google structured data to `\pages`
549
-
550
- ## v0.3.2 - 2021-05-19
551
-
552
- - fixed formatting of `<meta>` tags
553
- - added config option `author`
554
- - added config option `robots`
555
- - added markup tag `[p]`
556
- - added markup tag `[center]`
557
-
558
- ## v0.3.1 - 2021-05-13
559
-
560
- - added config option `macros`
561
- - added command-line option `--version`
562
-
563
- ## v0.3.0 - 2021-05-09
564
-
565
- - Improved handling of m.css and Doxygen warnings and errors
566
- - added command-line option `--doxygen`
567
- - added command-line option `--werror`
568
- - added markup tag `[set_parent_class]`
569
- - added markup tag `[add_parent_class]`
570
- - added markup tag `[remove_parent_class]`
571
- - added config option `images`
572
- - added config option `examples`
573
- - added ability to specify tagfiles as URIs
574
-
575
- ## v0.2.1 - 2021-05-07
576
-
577
- - fixed some minor autolinking issues
578
-
579
- ## v0.2.0 - 2021-05-06
580
-
581
- - added config option `source_patterns`
582
-
583
- ## v0.1.2 - 2021-05-02
584
-
585
- - fixed the Z-order of the nav bar being higher than the search overlay
586
- - added `NDEBUG` to the default set of defines
587
-
588
- ## v0.1.1 - 2021-04-26
589
-
590
- - added an additional cleanup step to the HTML postprocessor
591
-
592
- ## v0.1.0 - 2021-04-26
593
-
594
- First public release :tada:
1
+ Metadata-Version: 2.4
2
+ Name: poxy
3
+ Version: 0.19.6
4
+ Summary: Documentation generator for C++.
5
+ Author-email: Mark Gillard <mark.gillard@outlook.com.au>
6
+ License: MIT
7
+ Project-URL: Source, https://github.com/marzer/poxy
8
+ Project-URL: Tracker, https://github.com/marzer/poxy/issues
9
+ Project-URL: Funding, https://github.com/sponsors/marzer
10
+ Keywords: c++,doxygen,documentation
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: C++
14
+ Classifier: Topic :: Documentation
15
+ Classifier: Topic :: Software Development :: Code Generators
16
+ Classifier: Topic :: Software Development :: Documentation
17
+ Classifier: Topic :: Utilities
18
+ Requires-Python: >=3.7
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE.txt
21
+ Requires-Dist: misk>=0.8.1
22
+ Requires-Dist: bs4
23
+ Requires-Dist: jinja2
24
+ Requires-Dist: pygments
25
+ Requires-Dist: html5lib
26
+ Requires-Dist: lxml
27
+ Requires-Dist: tomli
28
+ Requires-Dist: schema!=0.7.5
29
+ Requires-Dist: requests
30
+ Requires-Dist: trieregex
31
+ Requires-Dist: colorama
32
+ Dynamic: license-file
33
+
34
+ # poxy
35
+
36
+ Documentation generator for C++ based on Doxygen and [mosra/m.css](https://mcss.mosra.cz/).
37
+
38
+ [![Sponsor](https://img.shields.io/static/v1?label=sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86&style=flat-square)][sponsor]
39
+ [![Gitter](https://badges.gitter.im/marzer/poxy.svg)][gitter]
40
+
41
+ - [Overview](#overview)
42
+ - [Example](#example)
43
+ - [Installation](#installation)
44
+ - [Usage](#usage)
45
+ - [Config file options](#config-file-options)
46
+ - [Migrating from Doxygen](#migrating-from-doxygen)
47
+ - [Why the name "Poxy"?](#why-the-name-poxy)
48
+ - [License and Attribution](#license-and-attribution)
49
+
50
+ <br><br>
51
+
52
+ ## Overview
53
+
54
+ [mosra/m.css] is a Doxygen-based documentation generator that significantly improves on Doxygen's default output
55
+ by controlling some of Doxygen's more unruly options, supplying it's own slick HTML+CSS generation and adding
56
+ a fantastic live search feature. **Poxy** builds upon both by:
57
+
58
+ - Moving the configuration out into a TOML file
59
+ - Preprocessing the Doxygen XML to fix a bunch of Doxygen _~~bugs~~_ quirks
60
+ - Postprocessing the generated HTML to improve syntax highlighting and add a few other improvements
61
+ - Allowing source, image and example directories to be recursive or shallow on a per-directory basis
62
+ - Automatically defining C++ language feature macros based on your project's target C++ version
63
+ - Automatically integrating the cppreference.com doxygen tagfile
64
+ - Providing a number of additional built-in doxygen `@alias` commands
65
+ - Giving more control over the HTML inline using square-bracket `[tags][/tags]`
66
+ - Adding a switchable light theme
67
+ - Adding support for C++20 concepts
68
+ - Self-hosting fonts to reduce external HTTP requests
69
+ - Inlining SVGs so they can take advantage of [`currentColor`]
70
+ - Quite a bit more!
71
+
72
+ <br><br>
73
+
74
+ ## Example
75
+
76
+ The homepage + documentation for [toml++] is built using poxy:
77
+
78
+ - homepage: [marzer.github.io/tomlplusplus](https://marzer.github.io/tomlplusplus/)
79
+ - config file: [`poxy.toml`](https://github.com/marzer/tomlplusplus/blob/master/docs/poxy.toml)
80
+
81
+ <br><br>
82
+
83
+ ## Installation
84
+
85
+ ### Prerequisites:
86
+
87
+ - Python 3.7+
88
+ - Doxygen 1.8.20+ (must be visible on system path)
89
+ - Linux only: `sudo apt install dvisvgm`
90
+
91
+ ### Then:
92
+
93
+ ```
94
+ pip install poxy
95
+ ```
96
+
97
+ <br><br>
98
+
99
+ ## Usage
100
+
101
+ Poxy is a command-line application.
102
+
103
+ ```
104
+ usage: poxy [-h] [-v] [--html | --no-html] [--ppinclude <regex>] [--ppexclude <regex>]
105
+ [--theme {light,dark,custom}] [--threads N] [--version] [--xml | --no-xml]
106
+ [--werror | --no-werror] [--bug-report] [--git-tags]
107
+ [--squash-patches | --no-squash-patches] [--min-version <version>]
108
+ [config]
109
+
110
+ _ __ _____ ___ _
111
+ | '_ \ / _ \ \/ / | | |
112
+ | |_) | (_) > <| |_| |
113
+ | .__/ \___/_/\_\\__, |
114
+ | | __/ |
115
+ |_| |___/ v0.17.0 - github.com/marzer/poxy
116
+
117
+ Generate fancy C++ documentation.
118
+
119
+ positional arguments:
120
+ config path to poxy.toml or a directory containing it (default: .)
121
+
122
+ options:
123
+ -h, --help show this help message and exit
124
+ -v, --verbose enable very noisy diagnostic output
125
+ --html, --no-html specify whether HTML output is required
126
+ --ppinclude <regex> pattern matching HTML file names to post-process (default: all)
127
+ --ppexclude <regex> pattern matching HTML file names to exclude from post-processing (default: None)
128
+ --theme {light,dark,custom}
129
+ sets the default visual theme (default: read from config)
130
+ --threads N set the number of threads to use (default: automatic)
131
+ --version print the version and exit
132
+ --xml, --no-xml specify whether XML output is required
133
+ --werror, --no-werror
134
+ treat warnings as errors (default: read from config)
135
+ --bug-report captures all output in a zip file for easier bug reporting.
136
+ --git-tags add git-tag-based semver version switcher to the generated HTML
137
+ --squash-patches, --no-squash-patches
138
+ when using --git-tags and two version tags differ by a patch number,
139
+ generate docs for the highest one only (default: True)
140
+ --min-version <version>
141
+ sets the minimum version number to emit when using --git-tags,
142
+ or a negative integer to mean "the last N versions". (default: None)
143
+ ```
144
+
145
+ The basic three-step to using Poxy is similar to Doxygen:
146
+
147
+ 1. Create your `poxy.toml` (Poxy's answer to the `Doxyfile`)
148
+ 2. Invoke Poxy on it: `poxy path/to/poxy.toml` (or simply `poxy` if the cwd contains the config file)
149
+ 3. See your HTML documentation `<cwd>/html`
150
+
151
+ <br><br>
152
+
153
+ ## Config file options
154
+
155
+ For a self-contained `poxy.toml` example to copy and paste from,
156
+ see [the one used by toml++](https://github.com/marzer/tomlplusplus/blob/master/docs/poxy.toml).
157
+
158
+ For a full list of options, with full descriptions, schemas and usage examples, see the [Configuration options] wiki page.
159
+
160
+ <br><br>
161
+
162
+ ## Migrating from Doxygen
163
+
164
+ Generally the relevant `Doxyfile` options will have a corresponding `poxy.toml` option
165
+ (or be replaced by something more specific) so migration is largely a transcription and box-ticking exercise,
166
+ though there are a few gotchas:
167
+
168
+ #### **⚠&#xFE0F; The majority of Doxygen's options are controlled by Poxy**
169
+
170
+ Many of Doxygen's various knobs and switches are manually overridden by Poxy, and are not configurable.
171
+ **This is intentional!** Doxygen tends to break in hilarious and fantastic ways from one release to the next;
172
+ reducing it to a very 'locked-down' back-end minimizes the damage future regressions can do, allowing me to
173
+ keep most debugging python-side.
174
+
175
+ If there is some Doxygen feature you would like exposed in Poxy, please create a [feature request].
176
+
177
+ #### **⚠&#xFE0F; All relative input paths are relative to the config file, _not_ CWD**
178
+
179
+ This is in contrast to Doxygen, which has all paths be relative to the Doxygen process' current working directory
180
+ regardless of where the Doxyfile was. I've always personally found that to be nothing but a source of error,
181
+ so Poxy does away with it.
182
+
183
+ #### **⚠&#xFE0F; Output is always emitted to CWD**
184
+
185
+ Poxy always emits HTML to `<cwd>/html` and XML to `<cwd>/xml`. You cannot use your config file to specify where any
186
+ output will be placed - use your command-line environment for this purpose instead by changing the CWD.
187
+ This is to eliminate nasty surprises brought on by goofy config file decisions and help with portability.
188
+
189
+ #### **⚠&#xFE0F; Poxy config files are self-contained**
190
+
191
+ There is no equivalent to Doxygen's `@INCLUDE`. If your project is structured in such a way that a
192
+ multi-level Doxyfile hierarchy is necessary, Poxy isn't for you.
193
+
194
+ <br><br>
195
+
196
+ ## Why the name "Poxy"?
197
+
198
+ Originally it was simply called "dox", but there's already a C++ documentation project with that name,
199
+ so I smashed "python" and "dox" together and this is what I came up with.
200
+
201
+ Also "poxy" can be slang for cheap, inferior, poor quality, etc., which I thought was funny.
202
+
203
+ <br><br>
204
+
205
+ ## License and Attribution
206
+
207
+ This project is published under the terms of the [MIT license](https://github.com/marzer/poxy/blob/main/LICENSE.txt).
208
+
209
+ Significant credit must go to Vladimír Vondruš ([mosra]) and his amazing [m.css] Doxygen theme.
210
+ Poxy bundles a fork of m.css, used per the [MIT/Expat license](https://github.com/marzer/poxy/blob/main/poxy/data/m.css/COPYING)
211
+ (which can also be found in the installed python package).
212
+
213
+ [m.css]: https://mcss.mosra.cz/documentation/doxygen/
214
+ [mosra]: https://github.com/mosra
215
+ [mosra/m.css]: https://mcss.mosra.cz/documentation/doxygen/
216
+ [toml++]: https://marzer.github.io/tomlplusplus/
217
+ [c++ feature test macros]: https://en.cppreference.com/w/cpp/feature_test
218
+ [configuration options]: https://github.com/marzer/poxy/wiki/Configuration-options
219
+ [feature request]: https://github.com/marzer/poxy/issues/new
220
+ [`currentcolor`]: https://gomakethings.com/currentcolor-and-svgs
221
+ [gitter]: https://gitter.im/marzer/poxy
222
+ [sponsor]: https://github.com/sponsors/marzer
223
+
224
+ # Changelog
225
+
226
+ ## v0.19.6 - 2025-06-28
227
+
228
+ - fixed code blocks losing their file type with some versions of doxygen
229
+
230
+ ## v0.19.4 - 2024-12-24
231
+
232
+ - fixed minor issues on Python 3.8
233
+
234
+ ## v0.19.3 - 2024-11-11
235
+
236
+ - fixed crash with nested C-style enums without a name (#39) (@tim-janik)
237
+ - fixed `POXY_IMPLEMENTATION_DETAIL_IMPL` appearing in HTML in some circumstances
238
+
239
+ ## v0.19.1 - 2024-10-30
240
+
241
+ - fixed `ModuleNotFoundError` error in Python 3.12 (#38) (@dekinet)
242
+
243
+ ## v0.19.0 - 2024-09-15
244
+
245
+ - fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
246
+ - added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
247
+ - added auto-linking for various cppreference.com pages
248
+ - made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
249
+ - updated m.css
250
+
251
+ ## v0.18.0 - 2024-08-03
252
+
253
+ - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
254
+
255
+ ## v0.17.2 - 2024-06-16
256
+
257
+ - fixed qualified return types appearing squashed together without whitespace in some circumstances
258
+ - fixed performance regression in post-process step
259
+ - updated m.css
260
+ - minor style fixes
261
+
262
+ ## v0.17.1 - 2024-06-14
263
+
264
+ - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
265
+
266
+ ## v0.17.0 - 2024-04-21
267
+
268
+ - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
269
+
270
+ ## v0.16.0 - 2024-01-28
271
+
272
+ - added multi-version mode argument `--git-tags`
273
+ - added colour to output
274
+
275
+ ## v0.15.0 - 2023-12-08
276
+
277
+ - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
278
+ - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
279
+
280
+ ## v0.14.0 - 2023-11-25
281
+
282
+ - added the use of `*` wildcards in `implementation_headers`
283
+
284
+ ## v0.13.9 - 2023-09-10
285
+
286
+ - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
287
+
288
+ ## v0.13.8 - 2023-09-09
289
+
290
+ - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
291
+
292
+ ## v0.13.7 - 2023-08-17
293
+
294
+ - fixed minor syntax highlighting issues
295
+
296
+ ## v0.13.6 - 2023-08-10
297
+
298
+ - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
299
+
300
+ ## v0.13.5 - 2023-08-09
301
+
302
+ - fixed `--bug-report` regression (#29) (@wroyca)
303
+
304
+ ## v0.13.4 - 2023-08-06
305
+
306
+ - fixed excessive `template<>` noise in details views
307
+
308
+ ## v0.13.3 - 2023-08-01
309
+
310
+ - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
311
+
312
+ ## v0.13.2 - 2023-07-31
313
+
314
+ - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
315
+ - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
316
+ - minor style fixes
317
+
318
+ ## v0.13.1 - 2023-07-29
319
+
320
+ - fixed crash regression with Doxygen 1.9.7
321
+ - fixed issues with \[tag\] substitution
322
+ - minor style fixes
323
+
324
+ ## v0.13.0 - 2023-07-28
325
+
326
+ - migrated to `pyproject.toml`
327
+ - fixed footer being off-center (#24) (@wroyca)
328
+ - fixed redundant `auto` in trailing return types (#26) (@wroyca)
329
+ - added config option `sponsor`
330
+ - added config option `twitter`
331
+
332
+ ## v0.12.7 - 2023-07-27
333
+
334
+ - allowed the use of square-bracket \[tags\] in more places
335
+
336
+ ## v0.12.6 - 2023-07-25
337
+
338
+ - fixed overlong `template<>` lines in summary views
339
+ - fixed function parameter names greedily wrapping in details tables
340
+
341
+ ## v0.12.5 - 2023-07-20
342
+
343
+ - fixed overlong `template<>` lines in page headers (they now wrap)
344
+
345
+ ## v0.12.4 - 2023-03-23
346
+
347
+ - fixed changelog not auto-linking with some versions of Doxygen
348
+
349
+ ## v0.12.3 - 2023-02-09
350
+
351
+ - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
352
+
353
+ ## v0.12.2 - 2023-02-08
354
+
355
+ - switched default TOML lib to `tomli`
356
+
357
+ ## v0.12.1 - 2022-11-22
358
+
359
+ - fixed `github` and `gitlab` config options not accepting periods (`.`)
360
+
361
+ ## v0.12.0 - 2022-11-13
362
+
363
+ - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
364
+ - added command-line option `--bug-report`
365
+ - improved diagnostic text in some areas
366
+
367
+ ## v0.11.1 - 2022-10-23
368
+
369
+ - fixed crash when using `<a>` tags in navbar
370
+
371
+ ## v0.11.0 - 2022-10-21
372
+
373
+ - added syntax highlighting for functions
374
+ - improved syntax highlighting of typenames
375
+
376
+ ## v0.10.2 - 2022-10-16
377
+
378
+ - fixed crash when tagfile is disabled
379
+ - fixed a few syntax highlighting edge-cases
380
+ - fixed non-determinism in XML output formatting
381
+ - improved performance of syntax highlighting post-process
382
+ - minor style fixes
383
+
384
+ ## v0.10.1 - 2022-10-15
385
+
386
+ - minor style fixes
387
+
388
+ ## v0.10.0 - 2022-10-14
389
+
390
+ - fixed `static` keyword sometimes appearing twice on variables
391
+ - fixed `constexpr` keyword sometimes leaking into variable type
392
+ - fixed newer versions of pygments adding unnecessary markup to whitespace
393
+ - fixed malformed trailing return types in some circumstances
394
+ - fixed changelog page sometimes not having a table-of-contents
395
+ - added support for C++20's `constinit`
396
+ - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
397
+ - added command-line options `--html`, `--no-html`
398
+ - added command-line options `--xml`, `--no-xml`
399
+ - added command-line option `--no-werror`
400
+ - added `CHANGES` to the set of candidate changelog filenames
401
+ - deprecated command-line option `--xmlonly`
402
+ - removed command-line option `--doxygen`
403
+
404
+ ## v0.9.1 - 2022-10-04
405
+
406
+ - fixed SVG inlining not preserving original image class attributes
407
+ - fixed `ValueError` when reading some SVG files
408
+ - fixed `navbar` option allowing duplicates
409
+ - fixed custom navbar items always being transformed to lowercase
410
+ - fixed navbar generating links to empty pages
411
+ - added `concepts` to the default set of links in `navbar`
412
+ - added `navbar` values `all` and `default`
413
+ - reduced I/O churn during HTML post-processing
414
+ - removed command-line option `--dry`
415
+
416
+ ## v0.9.0 - 2022-10-03
417
+
418
+ - added support for C++20 concepts
419
+
420
+ ## v0.8.2 - 2022-10-01
421
+
422
+ - added post-process to inline all local SVGs
423
+ - minor style fixes
424
+
425
+ ## v0.8.1 - 2022-09-30
426
+
427
+ - minor style fixes
428
+
429
+ ## v0.8.0 - 2022-09-29
430
+
431
+ - added config option `gitlab` (#13) (@wroyca)
432
+ - added ixx module extension in source patterns (#11) (@wroyca)
433
+ - added support for multi-codepoint emojis
434
+ - improved `doxygen.exe` location discovery on Windows
435
+ - improved `CHANGELOG` location discovery
436
+ - moved all poxy assets in the generated HTML to `html/poxy`
437
+ - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
438
+ - removed ability to override m.css implementation
439
+ - removed legacy support for reading config options from neighbouring Doxyfiles
440
+ - overhauled the light theme
441
+ - many minor style fixes and tweaks
442
+
443
+ ## v0.7.1 - 2022-08-17
444
+
445
+ - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
446
+
447
+ ## v0.7.0 - 2022-08-16
448
+
449
+ - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
450
+ - added `theme` command-line option
451
+ - added `html_header` config option option
452
+ - added automatic generation of github links in changelog when config option `github` is set
453
+ - added new light theme
454
+ - added dynamic switch for dark/light theme
455
+ - removed text from github icon on navbar (#5) (@wroyca)
456
+ - removed excessive spacing between article sections (#5) (@wroyca)
457
+ - many minor style fixes and tweaks
458
+
459
+ ## v0.6.1 - 2022-08-16
460
+
461
+ - fixed multi-row navbar occluding page content (#3) (@wroyca)
462
+
463
+ ## v0.6.0 - 2022-08-14
464
+
465
+ - fixed malformed error messages in some circumstances
466
+ - added builtin C++ standard macros for C++23
467
+ - added `changelog` config option
468
+ - updated cppreference.com tagfile
469
+
470
+ ## v0.5.7 - 2022-05-17
471
+
472
+ - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
473
+
474
+ ## v0.5.6 - 2022-05-14
475
+
476
+ - fixed path error when using `--dry`
477
+ - fixed `friend` keyword sometimes leaking into function return types
478
+ - added additional language code block aliases
479
+ - added `--nocleanup` to `--help` output
480
+ - added support for C++20's `consteval` keyword
481
+
482
+ ## v0.5.5 - 2022-04-16
483
+
484
+ - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
485
+
486
+ ## v0.5.4 - 2022-04-15
487
+
488
+ - updated m.css
489
+ - updated emoji database
490
+
491
+ ## v0.5.3 - 2021-12-12
492
+
493
+ - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
494
+ - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
495
+
496
+ ## v0.5.2 - 2021-11-02
497
+
498
+ - fixed over-eager link-replacement for internal `#anchor` links
499
+ - added command-line options `--ppinclude` and `--ppexclude`
500
+
501
+ ## v0.5.1 - 2021-10-09
502
+
503
+ - fixed over-eager link replacement causing text to be deleted
504
+
505
+ ## v0.5.0 - 2021-09-11
506
+
507
+ - fixed a crash during HTML post-processing
508
+ - fixed `implementation_headers` not working when paths use backslashes
509
+ - added warnings when `implementation_headers` doesn't match anything
510
+
511
+ ## v0.4.5 - 2021-06-08
512
+
513
+ - added command-line option `--xmlonly`
514
+
515
+ ## v0.4.3 - 2021-05-31
516
+
517
+ - fixed regression in `[code_blocks]` functionality
518
+ - fixed minor issues in syntax highlighter
519
+ - added symbols from doxygen tagfiles to the syntax highlighter
520
+ - minor style tweaks
521
+
522
+ ## v0.4.1 - 2021-05-30
523
+
524
+ - fixed `.dirs` being glommed as source paths
525
+ - added config option `scripts`
526
+ - added config option `stylesheets`
527
+ - added config option `jquery`
528
+ - added `custom` theme
529
+ - added ability to use `HOME.md` as main page
530
+ - added additional fix for inline `<code>` blocks
531
+ - added `.poxy-toc` to table-of-contents elements
532
+ - added floating page table-of-contents
533
+ - removed m.css favicon fallback
534
+ - made improvements to the `light` and `dark` themes
535
+ - updated C++ doxygen tagfile
536
+
537
+ ## v0.4.0 - 2021-05-29
538
+
539
+ - added config option `theme`
540
+ - added version number to CSS and javascript filenames to prevent browser cache issues
541
+ - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
542
+ - added `POXY_IGNORE(...)` magic macro
543
+ - fixed alignment of nested images inside detail blocks
544
+
545
+ ## v0.3.4 - 2021-05-28
546
+
547
+ - added basic `using` alias detection to syntax highlighter
548
+ - added missing badges for C++23, 26 and 29
549
+
550
+ ## v0.3.3 - 2021-05-23
551
+
552
+ - fixed sorting of namespace and group members
553
+ - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
554
+ - added google structured data to `\pages`
555
+
556
+ ## v0.3.2 - 2021-05-19
557
+
558
+ - fixed formatting of `<meta>` tags
559
+ - added config option `author`
560
+ - added config option `robots`
561
+ - added markup tag `[p]`
562
+ - added markup tag `[center]`
563
+
564
+ ## v0.3.1 - 2021-05-13
565
+
566
+ - added config option `macros`
567
+ - added command-line option `--version`
568
+
569
+ ## v0.3.0 - 2021-05-09
570
+
571
+ - Improved handling of m.css and Doxygen warnings and errors
572
+ - added command-line option `--doxygen`
573
+ - added command-line option `--werror`
574
+ - added markup tag `[set_parent_class]`
575
+ - added markup tag `[add_parent_class]`
576
+ - added markup tag `[remove_parent_class]`
577
+ - added config option `images`
578
+ - added config option `examples`
579
+ - added ability to specify tagfiles as URIs
580
+
581
+ ## v0.2.1 - 2021-05-07
582
+
583
+ - fixed some minor autolinking issues
584
+
585
+ ## v0.2.0 - 2021-05-06
586
+
587
+ - added config option `source_patterns`
588
+
589
+ ## v0.1.2 - 2021-05-02
590
+
591
+ - fixed the Z-order of the nav bar being higher than the search overlay
592
+ - added `NDEBUG` to the default set of defines
593
+
594
+ ## v0.1.1 - 2021-04-26
595
+
596
+ - added an additional cleanup step to the HTML postprocessor
597
+
598
+ ## v0.1.0 - 2021-04-26
599
+
600
+ First public release :tada: