autumnnote 2.3.0 → 2.4.0
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/README.md +1 -1
- package/dist/autumnnote.cjs +25 -24
- package/dist/autumnnote.css +1 -1
- package/dist/autumnnote.es.js +919 -328
- package/dist/autumnnote.es.js.map +1 -1
- package/dist/autumnnote.min.js +25 -24
- package/dist/autumnnote.umd.js +25 -24
- package/dist/autumnnote.umd.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,7 +69,7 @@ A **zero-dependency WYSIWYG rich-text editor** built with vanilla JavaScript (ES
|
|
|
69
69
|
|
|
70
70
|
### Search
|
|
71
71
|
- **Find and Replace** — `Ctrl+F` to find, `Ctrl+H` for find-and-replace; compact non-blocking floating panel (top-right); TreeWalker text matching; `<mark>` highlighting; case-sensitive `Aa` toggle; **regex mode** (`.*` toggle); icon-button Prev/Next navigation (↑ ↓); single and replace-all modes
|
|
72
|
-
- **Auto language detection** — when selected text is formatted as a code block the editor
|
|
72
|
+
- **Auto language detection** — when selected text is formatted as a code block the editor analyses the content and applies Prism.js syntax highlighting. 22 languages: JavaScript, TypeScript, Python, HTML, CSS, SCSS, JSON, YAML, Markdown, XML, SQL, Bash, Java, C#, PHP, Ruby, Go, Rust, C++, C, Kotlin, Swift. Detection weighs every matching signal and picks the highest-scoring language, requiring a clear margin before it commits — a snippet that could be two things is left unhighlighted rather than guessed at, and prose is never treated as code
|
|
73
73
|
|
|
74
74
|
### Inline tooltips
|
|
75
75
|
Floating toolbars appear automatically when the user clicks on an editable element:
|