Skip to content

Commit

Permalink
Bump README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdj committed Feb 23, 2024
1 parent 86347c7 commit 5e96f57
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@
spaces a tab character aligns to is customizable using `tabStop`, e.g.
`tabStop: 8`. The default is 4.

* Rename eval.wrap to eval.container (#167)

`wrap` is used at the top-level of settings for wrapping at a certain
column, and inside `eval` to determine the type in which the result
is "wrapped". Using the same name for both is confusing, so this adds
`eval.container` as the new name for `eval.wrap`. `eval.wrap` will continue
to be supported for the forseeable future, but its use will be discouraged.

This also changes the values (again keeping the original ones for
backwards-compat), so the complete changes to a configuration would be:

- `wrap: code` becomes `container: code`
- `wrap: raw` becomes `container: none`
- `wrap: rawInline` becomes `container: inline`

## 0.11.0.0 (2024-02-14)

* Support wrapping at a specific column (#164)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Table of Contents
- [Input format](#input-format)
- [Configuration](#configuration)
- [Line wrapping](#line-wrapping)
- [Tab stop](#tab-stop)
- [Margins](#margins)
- [Auto advancing](#auto-advancing)
- [Advanced slide splitting](#advanced-slide-splitting)
Expand Down

0 comments on commit 5e96f57

Please sign in to comment.