Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Fix XhtmlProcessorTest

AuthorDaveJarvis <email>
Date2023-02-20 18:09:06 GMT-0800
Commit406166a126077a83bffeb6fe4faf29b09500ae53
Parent181293f
Delta5 lines added, 12 lines removed, 7-line decrease
src/test/java/com/keenwrite/processors/html/XhtmlProcessorTest.java
Arguments.of(
HTML_TEX_DELIMITED,
- "<p id=\"caret\">the \uD83D\uDC4D emoji</p>\n"
+ """
+ <html><head></head><body><p>the 👍 emoji</p>
+ </body></html>"""
),
Arguments.of(
XHTML_TEX,
"""
- <html>
- <head>
- <title> </title>
- <meta charset="utf8"/>
- <meta content="2" name="count"/>
- </head>
- <body>
- <p id="caret">the 👍 emoji</p>
- </body>
- </html>
- """
+ <html><head></head><body><p>the 👍 emoji</p>
+ </body></html>"""
)
);