Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v9.0.0 - Unreleased

- Added support for inserts, deletes, and marks.
- Added support for nested lists.
- Added support for ordered lists.
- Improved support for spans with attributes.

## v8.0.0 - 2025-11-28

- Added support for inline attributes on links and images.
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,27 @@ Further documentation can be found at <https://hexdocs.pm/jot>.

This project is a work in progress. So far it supports:

- [x] Autolinks (email and URL)
- [x] Block attributes
- [x] Bullet lists without nesting
- [x] Code blocks
- [x] Block quotes
- [x] Code blocks
- [x] Content escaping
- [x] Div
- [x] Emphasis and strong
- [x] Footnotes
- [x] Headings
- [x] Images (with attributes support)
- [x] Inline code
- [x] Inserts, deletes, and marks.
- [x] Links (inline and reference, with attributes support)
- [x] Autolinks (email and URL)
- [x] Lists (without nesting)
- [x] Manual line breaks
- [x] Maths (inline and display)
- [x] Non-breaking spaces
- [x] Ordered lists with the `1.`, `1)`, and `(1)` syntaxes
- [x] Paragraphs
- [x] Raw blocks
- [x] Smart replacing of `...` with ellipsis
- [x] Smart replacing of hyphens with dashes
- [x] Span with attributes
- [x] Thematic breaks
- [x] Smart replacing of hyphens with dashes
- [x] Smart replacing of `...` with ellipsis
- [x] Non-breaking spaces
- [x] Unordered lists
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "jot"
version = "8.0.0"
version = "9.0.0"
gleam = ">= 1.5.0"
description = "A parser for Djot, a markdown-like language"
licences = ["Apache-2.0"]
Expand Down
Loading