Skip to content

Releases: MaxMelcher/AzureDevOps.WikiPDFExport

Code highlighting

20 Jul 10:19
37f85d5
Compare
Choose a tag to compare

Adding support of code rendering based on highlight.js - thanks @AltarBeastiful for the PR!

--math to convert math formulas

16 Jun 15:48
Compare
Choose a tag to compare

Version 3.0.0

23 May 22:49
Compare
Choose a tag to compare

Version 3 comes with new features and breaking changes.

.NET Framework 5 #43

Upgrade to .NET 5. If you run the converter on a build server, ensure that you have .NET 5 installed.

Rework Logging #58

Logging is now a bit more useful

Remove [[TOC]] from pdf #53

Removing the TOC tags if they are present.

Adding frontmatter yaml tags #60

Adding frontmatter tags to the output if they are present

Include / Exclude capabilities and multi output #39

Introducing --filter parameter to include only pages that matches the provided filter.
E.g. -filter=tags:test would only include pages that have the frontmatter set to

---
tags: test
---

or

---
tags: 
- test
---

Filters can be combined with , as separator, e.g. --filter=tags:test,title:license would output all files matching both tags.

Defaulting to devopswikistyle.css #63

If no --css parameters is provided, then the stylesheet is used that mimics Azure DevOps design.

Version 2.9.0 Image Resize

20 Jan 16:27
Compare
Choose a tag to compare

All resizing options are now supported, fixes #30

Pictures with Width/Height

![image.png](/.attachments/image.png =250x250)
Width and Height set to 250px

Pictures with Width only

![image.png](/.attachments/image.png =300x)
Width set to 300px

Pictures with Height only

![image.png](/.attachments/image.png =x150)
Height set to 150px

Version 2.8.1 - fix pictures that contain spaces

20 Jan 11:26
Compare
Choose a tag to compare

fixed #38 - image path were encoded and therefore not visible.

Version 2.8.0 - Fix PDF navigation

20 Jan 10:49
Compare
Choose a tag to compare

Thanks to @NinjaCross the PDF navigation is now reflecting the structure of the document:

image

Version 2.7.1 fix handling of relatives paths

17 Dec 23:37
Compare
Choose a tag to compare

thanks @ricardoboss for the PR - the -p flag now handles relative paths.

Version 2.7.0 --attachments-path

15 Dec 17:21
Compare
Choose a tag to compare

Specify the folder where the attachments are stored. Required if you have pictures and only export a subfolder.
Thanks @t4rzsan for the PR!

Version 2.6.0 - telemetry

14 Aug 12:49
Compare
Choose a tag to compare

Option to deactivate telemetry.

To be clear: only the page count and execution time are collected to ensure that the performance does not degenerate. In the case of an exception, the exception is logged to reduce the time to fix.

Version 2.5.1 - include mermaid.js

31 Jul 12:43
Compare
Choose a tag to compare

when --mermaidjs-path is specified then the mermaid.js file is expected there to render the diagrams. If not, and -m/--mermaid is specified, then an online version is used.

Thanks @jkanczler for your help!