@liascript/editor 1.1.7--0.16.2 → 1.1.7--0.16.3
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 +18 -0
- package/README.md +1 -1
- package/dist/index.0178bf58.js +1 -0
- package/dist/index.59c6bf24.js +1 -0
- package/dist/index.882bce07.js +1 -0
- package/dist/index.dd678bd3.js +1 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/dist/index.871db229.js +0 -1
- package/dist/index.9ae49b02.js +0 -1
- package/dist/index.9d22161e.js +0 -1
- package/dist/index.e1851014.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.3] - 21/10/2024
|
|
8
|
+
|
|
9
|
+
- feat(Typography): It is now possible within a LiaScript Markdown to apply the following typographical elements:
|
|
10
|
+
|
|
11
|
+
- A sequence of dashes is now translated into:
|
|
12
|
+
|
|
13
|
+
1. - (single dash): Hyphen or minus sign
|
|
14
|
+
2. -- (double dash): En dash
|
|
15
|
+
3. --- (triple dash): Em dash
|
|
16
|
+
|
|
17
|
+
- Translate ... to unicode ellipsis
|
|
18
|
+
|
|
19
|
+
- Language base quotes single and double are translated into their typographical counterparts, based on the language of the course. Additionally these two types have been added to the escaped elements `\"` and `\'`.
|
|
20
|
+
|
|
21
|
+
- improve(HTML-Parser): The parsing speed for HTML has been increased, due to a new abort mechanism, which will stop the parsing of a HTML end-tag has been detected. This will prevent the parser from running into an long loop.
|
|
22
|
+
|
|
23
|
+
- improve(Parser): Some minor improvements for regular expressions have been applied after benchmarking the parser.
|
|
24
|
+
|
|
7
25
|
## [0.16.2] - 04/10/2024
|
|
8
26
|
|
|
9
27
|
- feat(Zip): Courses can now be uploaded as ZIP files, which will be automatically extracted and loaded. Also courses can be hosted as Zip-files, which will be extracted on the fly.
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ install via npm:
|
|
|
23
23
|
`npm i @liascript/editor`
|
|
24
24
|
|
|
25
25
|
> **Note:** The version information might look a bit different e.g.
|
|
26
|
-
> `1.1.7--0.16.
|
|
26
|
+
> `1.1.7--0.16.3`. The second version mirrors current version of LiaScript,
|
|
27
27
|
> while the first number is referring to the changes of the editor-branch.
|
|
28
28
|
|
|
29
29
|
## HowTo
|