mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Another invalid backslash escape and also remove use of EscapedCharNode that doesnt exist
This commit is contained in:
parent
2cb7b68714
commit
c4a03f309a
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user