@liascript/editor 1.1.22--0.16.11 → 1.1.22--0.16.14
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 +19 -0
- package/dist/ace.js +1 -1
- package/dist/ext-inline_autocomplete.js +1 -1
- package/dist/ext-language_tools.js +1 -1
- package/dist/ext-prompt.js +1 -1
- package/dist/ext-searchbox.js +1 -1
- package/dist/{index.012b63ef.css → index.6dd7b30b.css} +1 -1
- package/dist/index.7c1b8578.js +1 -0
- package/dist/{index.f1792a69.js → index.8bb880f2.js} +1 -1
- package/dist/index.d3445c54.js +6 -0
- package/dist/index.e872b418.js +1 -0
- package/dist/index.html +1 -1
- package/dist/mode-astro.js +1 -1
- package/dist/mode-coldfusion.js +1 -1
- package/dist/mode-curly.js +1 -1
- package/dist/mode-django.js +1 -1
- package/dist/mode-drools.js +1 -1
- package/dist/mode-ejs.js +1 -1
- package/dist/mode-gobstones.js +1 -1
- package/dist/mode-groovy.js +1 -1
- package/dist/mode-handlebars.js +1 -1
- package/dist/mode-html.js +1 -1
- package/dist/mode-html_elixir.js +1 -1
- package/dist/mode-html_ruby.js +1 -1
- package/dist/mode-java.js +1 -1
- package/dist/mode-javascript.js +1 -1
- package/dist/mode-jsp.js +1 -1
- package/dist/mode-jsx.js +1 -1
- package/dist/mode-latte.js +1 -1
- package/dist/mode-liquid.js +1 -1
- package/dist/mode-luapage.js +1 -1
- package/dist/mode-markdown.js +1 -1
- package/dist/mode-nunjucks.js +1 -1
- package/dist/mode-php.js +1 -1
- package/dist/mode-php_laravel_blade.js +1 -1
- package/dist/mode-razor.js +1 -1
- package/dist/mode-rhtml.js +1 -1
- package/dist/mode-scala.js +1 -1
- package/dist/mode-sjs.js +1 -1
- package/dist/mode-slim.js +1 -1
- package/dist/mode-smarty.js +1 -1
- package/dist/mode-soy_template.js +1 -1
- package/dist/mode-svg.js +1 -1
- package/dist/mode-tsx.js +1 -1
- package/dist/mode-twig.js +1 -1
- package/dist/mode-typescript.js +1 -1
- package/dist/mode-velocity.js +1 -1
- package/dist/mode-visualforce.js +1 -1
- package/dist/mode-vue.js +1 -1
- package/dist/mode-wollok.js +1 -1
- package/dist/mode-xml.js +1 -1
- package/package.json +13 -11
- package/dist/index.387c4605.js +0 -1
- package/dist/index.79619cb2.js +0 -1
- package/dist/index.d76a2d9d.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ 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.14] - 14/04/2025
|
|
8
|
+
|
|
9
|
+
- fix(Formulas): Translating the content with Google-Translate does now not affect formulas anymore.
|
|
10
|
+
- chors: Npm update of katex, ace, caniuse, etc
|
|
11
|
+
- feat: Special ignore comments added `<!---.*--->`
|
|
12
|
+
|
|
13
|
+
Since separating HTML-comments with HTML-parameters is difficult,
|
|
14
|
+
compared to only comments. This new parser introduces a comment with at
|
|
15
|
+
least three dashes, which means that the content will be totally ignored.
|
|
16
|
+
|
|
17
|
+
`<!--- Everything style="here" will be ignored --->`
|
|
18
|
+
|
|
19
|
+
`<!-- everything style="width: 100" data-will be-kept -->`
|
|
20
|
+
|
|
21
|
+
## [0.16.12] - 04/04/2025
|
|
22
|
+
|
|
23
|
+
- fix: length calculation for ASCII-Art with complex emojis
|
|
24
|
+
- feat: add time settings to multimedia comments `#t=start,end`
|
|
25
|
+
|
|
7
26
|
## [0.16.11] - 06/03/2025
|
|
8
27
|
|
|
9
28
|
- feat(Formulas): Add chemistry support via https://mhchem.github.io/MathJax-mhchem/
|