@liascript/editor 1.1.7--0.16.3 → 1.1.7--0.16.5
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.
- package/CHANGELOG.md +33 -0
- package/dist/ace.js +1 -1
- package/dist/index.91d3dc02.js +1 -0
- package/dist/index.a8c5f041.js +6 -0
- package/dist/index.b598fbf1.css +1 -0
- package/dist/index.ba98aed0.js +1 -0
- package/dist/index.c4941675.js +1 -0
- package/dist/index.e426285e.js +1 -0
- package/dist/index.e92897e0.js +6 -0
- package/dist/index.html +1 -1
- package/package.json +13 -13
- package/dist/index.0178bf58.js +0 -1
- package/dist/index.4c3cd848.js +0 -6
- package/dist/index.59c6bf24.js +0 -1
- package/dist/index.882bce07.js +0 -1
- package/dist/index.9ee3d3aa.css +0 -1
- package/dist/index.dd678bd3.js +0 -1
- package/dist/index.fb30f4c5.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,39 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.16.5] - 07/11/2024
|
|
8
|
+
|
|
9
|
+
- fix: Add escape `\@` for macros, this will allow to pass escaped parameters to macros, which will not be evaluated by the parser.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [0.16.4] - 29/10/2024
|
|
13
|
+
|
|
14
|
+
- improve(Index): The course overview now has a masonry organization of courses with different size for cards. This will allow for a better overview of the courses and a more dynamic layout.
|
|
15
|
+
- improve(Cards): Better Design with more options
|
|
16
|
+
- improve(Google-Translation): Annoying pop-ups and hover effects are now suppressed.
|
|
17
|
+
- Upgrade:
|
|
18
|
+
|
|
19
|
+
- [x] npm Dexie 4.0.9
|
|
20
|
+
- [x] elm andre-dietrich/parser-combinators
|
|
21
|
+
- [x] elm f0i/statistics
|
|
22
|
+
- [x] elm tesk9/accessible-html
|
|
23
|
+
|
|
24
|
+
- feat: add . to \\. escape characters
|
|
25
|
+
|
|
26
|
+
``` markdown
|
|
27
|
+
Next to escaping ellipsis, \.\.\. this will now allow to add numbers to lists:
|
|
28
|
+
|
|
29
|
+
* 5\.1 ....
|
|
30
|
+
* 5\.2 ....
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
- fix(Parser): Arrows have been overwritten by typography
|
|
34
|
+
|
|
35
|
+
Rules for typographical dashes kicked in before the arrows, which blocked
|
|
36
|
+
left to right arrows to don't be detected correctly.
|
|
37
|
+
|
|
38
|
+
`--> ->`
|
|
39
|
+
|
|
7
40
|
## [0.16.3] - 21/10/2024
|
|
8
41
|
|
|
9
42
|
- feat(Typography): It is now possible within a LiaScript Markdown to apply the following typographical elements:
|