Skip to content

Releases: getreu/tp-note

v1.25.2

11 Feb 06:56
Compare
Choose a tag to compare
Improve the clipboard HTML to Markdown converter: add table conversion

New and improved features of the clipboard HTML to Markdown filter:

* Conversion of tables
* Better whitespace handling
* Extension API

This release migrates to the `html2md` crate with some patches applied.
The author of `html2md` grants to this repository the MIT license.

v1.25.1

05 Jan 21:43
Compare
Choose a tag to compare
Bugfix release: this release fixes a minor regression introduced with…

v1.24.12

25 Dec 11:54
Compare
Choose a tag to compare
Maintenance release: replace HTML to Markdown library

This maintenance release migrates to the `htmd` library used by
Tp-Note's internal HTML to Markdown clipboard filter to improve stability.

v1.24.11

08 Dec 10:27
Compare
Choose a tag to compare
Breaking change: rename `.tpnote.toml` to `tpnote.toml`

The former marker filename was `.tpnote.toml`. As the marker file
and the configuration file `~/.config/tpnote/tpnote.toml` have the same
syntax and semantics, it is more consistent that they have the same filename.

If you have used marker files, please rename them from `.tpnote.toml` to
`tpnote.toml`.

v1.24.10

09 Nov 22:56
Compare
Choose a tag to compare
Upgrade dependencies

v1.24.9

29 Oct 19:56
Compare
Choose a tag to compare
This release improves the internal HTML to Markdown filter `html_to_m…

v1.24.8

24 Aug 06:43
Compare
Choose a tag to compare
Group front-matter variables in templates

Breaking configuration change. If you use custom templates, please update them:

Front matter variables in templates must be preceeded with `fm.`, e.g.
`fm_author` becomes `fm.fm_author`, `fm_title` becomes `fm.fm_title`,
`fm_subtitle` becomes `fm.fm_subtitle` and so on.

v1.24.7

16 Jul 13:26
Compare
Choose a tag to compare
Viewer: add $$ syntax for inline formula

Since the version 1.19.8 Tp-Note can render mathematical formula. So far
inline formula had to be enclosed between `$ and $`. e.g. `$\alpha$`.
This former syntax, is still supported, is now deprecated.
The present release adds support for the standard syntax with simple $
enclosure, e.g. $\alpha$.

The former syntax for display formula:

```math
\alpha
```

can now be written as:

$$
\alpha
$$

v1.24.6

09 Jul 12:45
Compare
Choose a tag to compare
Revert migration to the `mdka` crate

The reverted change was introduced in v1.24.5. Unfortunately everyday usage
shows, that the `mdka` crate is not as mature as the former solution with
the `fast_html2md` crate.

Otherwise, no new features. The `extensions` table of the `zettel` scheme was
updated. This concerns only users of the `zettel` scheme _not_ using Markdown.

v1.24.4

21 Jun 21:33
Compare
Choose a tag to compare
Downgrade some dependencies to comply with rustc 1.77.2, no code changes