aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/tools/coqrst/notations/plain.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tools/coqrst/notations/plain.py')
-rw-r--r--doc/tools/coqrst/notations/plain.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/tools/coqrst/notations/plain.py b/doc/tools/coqrst/notations/plain.py
index 5d4501892..f6e82fc68 100644
--- a/doc/tools/coqrst/notations/plain.py
+++ b/doc/tools/coqrst/notations/plain.py
@@ -41,6 +41,9 @@ class TacticNotationsToDotsVisitor(TacticNotationsVisitor):
def visitHole(self, ctx:TacticNotationsParser.HoleContext):
self.buffer.write("‘{}’".format(ctx.ID().getText()[1:]))
+ def visitMeta(self, ctx:TacticNotationsParser.MetaContext):
+ self.buffer.write(ctx.METACHAR().getText()[1:])
+
def visitWhitespace(self, ctx:TacticNotationsParser.WhitespaceContext):
self.buffer.write(" ")