Add abbreviation and escaped character round-trip support#159
Merged
dereuromark merged 7 commits intomasterfrom Apr 1, 2026
Merged
Add abbreviation and escaped character round-trip support#159dereuromark merged 7 commits intomasterfrom
dereuromark merged 7 commits intomasterfrom
Conversation
- Create EscapedText node class for preserving escape sequences - Store abbreviation definitions on Document for round-trip - Add data-djot-escaped span wrapper in HtmlRenderer - Add template element for abbreviation definitions - Extract abbreviations and escaped chars in HtmlToDjot - Add 8 new round-trip tests - Update documentation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #159 +/- ##
============================================
+ Coverage 93.78% 93.80% +0.01%
- Complexity 3007 3027 +20
============================================
Files 92 93 +1
Lines 7758 7809 +51
============================================
+ Hits 7276 7325 +49
- Misses 482 484 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
EscapedTextnode class to preserve escape sequences (\*,\_, etc.) during round-tripsDocumentand outputs them via<template data-djot-abbreviations>elementHtmlToDjotextracts abbreviations from template element and escaped chars fromdata-djot-escapedspansChanges
src/Node/Inline/EscapedText.php- New node class for escaped punctuationsrc/Node/Document.php- Addedabbreviationsproperty with getter/settersrc/NodeType.php- AddedESCAPED_TEXTconstantsrc/Parser/BlockParser.php- Store abbreviations on document after parsingsrc/Parser/InlineParser.php- CreateEscapedTextnodes instead of text for escaped charssrc/Renderer/HtmlRenderer.php- Render abbreviation template and escaped text spanssrc/Converter/HtmlToDjot.php- Extract abbreviations and escaped characterstests/TestCase/RoundTripTest.php- Added 8 new teststests/TestCase/Parser/InlineParserTest.php- Updated to expectEscapedTextnodesdocs/guide/converters.md- Updated round-trip documentation