2
0
Fork 0
textout/textoutpc/builtin/_Show.py

36 lines
901 B
Python
Executable File

#!/usr/bin/env python3
#******************************************************************************
# Copyright (C) 2018 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# This file is part of the textoutpc project, which is MIT-licensed.
#******************************************************************************
from html import escape as _htmlescape
from .. import BlockTag as _TextoutBlockTag
__all__ = ["TextoutShowTag"]
class TextoutShowTag(_TextoutBlockTag):
""" Tag which shows the HTML code that is produced by textout().
Example uses:
[show][b]hello world![/show]
"""
aliases = ('[show]',)
notempty = True
superblock = True
inlined = True
generic = False
raw = False
def preprocess_html(self, content):
return _htmlescape(content)
def begin_html(self):
return '<span style="font-family: monospace;">'
def end_html(self):
return '</span>'
# End of file.