テキストのスタイリングに使用するh1
andimg
や などの関数で満たされた python ファイルがあります。strong
これらの各関数は、次のように定義されています。
def _wrapTag(tag, text, **attributes):
out = _createTag(tag, **attributes)
out += text
out += "</" + tag + ">"
return out
def _createTag(tag, **attributes):
out = "<" + tag
if attributes:
for attr, value in attributes:
out += " " + attr + "=\"" + value + "\""
out += ">"
return out
def h2(text, **attributes):
return _wrapTag("h2", text, **attributes)
理想的な世界ではdiv
、 classを使用して を作成するには、ただし、制限されたキーワードmodal
を呼び出します。に特別なケースを追加せずにこれをバイパスする方法はありますか?div(content, class="modal")
class
_createTag