Another invalid backslash escape and also remove use of EscapedCharNode that doesnt exist

This commit is contained in:
Kovid Goyal 2024-11-15 07:28:18 +05:30
parent 2cb7b68714
commit c4a03f309a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -144,7 +144,7 @@ class UrlNode(Node):
class FFMLProcessor: class FFMLProcessor:
""" r"""
This class is parser for the Formatter Function Markup Language (FFML). It This class is parser for the Formatter Function Markup Language (FFML). It
provides output methods for RST and HTML. provides output methods for RST and HTML.
@ -509,7 +509,7 @@ class FFMLProcessor:
return node return node
def get_escaped_char(self): def get_escaped_char(self):
node = EscapedCharNode(self.text_to(1)) node = self.text_to(1)
self.move_pos(1) self.move_pos(1)
return node return node