2020-05-03 18:08:38 +02:00
|
|
|
"""
|
|
|
|
A class for writing MoinMoin wiki syntax.
|
|
|
|
Copyright (C) 2020 Marcel Kapfer <opensource@mmk2410.org>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
|
2020-05-03 17:21:31 +02:00
|
|
|
class MoinMoinWriter():
|
|
|
|
"""
|
|
|
|
MoinMoin wiki syntax writer.
|
|
|
|
|
|
|
|
Except for newline, linebreak, hrule, table_row_end and macro all commands don't add a newline at the end.
|
|
|
|
|
|
|
|
Nothing is printed, all is returned.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def newline(self):
|
|
|
|
"""
|
|
|
|
Prints nothing and appends a newline.
|
|
|
|
"""
|
|
|
|
return "\n"
|
|
|
|
|
|
|
|
def linebreak(self):
|
|
|
|
"""
|
|
|
|
Print a froced linebreak (<br>).
|
|
|
|
"""
|
|
|
|
return "<<BR>>\n"
|
|
|
|
|
|
|
|
def hrule(self):
|
|
|
|
"""
|
|
|
|
Print a horizontal rule.
|
|
|
|
"""
|
|
|
|
return "----\n"
|
|
|
|
|
|
|
|
def ulitem(self, text, level=1):
|
|
|
|
"""
|
|
|
|
Print a unordered list item with given level.
|
|
|
|
"""
|
|
|
|
whitespace = " " * level
|
|
|
|
return f"{whitespace}* {text}"
|
|
|
|
|
|
|
|
def olitem(self, text, level=1):
|
|
|
|
"""
|
|
|
|
Print a orderd list item with given level.
|
|
|
|
"""
|
|
|
|
whitespace = " " * level
|
|
|
|
return f"{whitespace}1. {text}"
|
|
|
|
|
|
|
|
def text(self, text, bold=False, italics=False):
|
|
|
|
"""
|
|
|
|
Just print the given text.
|
|
|
|
"""
|
|
|
|
if bold and italics:
|
|
|
|
return f"*****{text}*****"
|
|
|
|
elif bold:
|
|
|
|
return f"***{text}***"
|
|
|
|
elif italics:
|
|
|
|
return f"**{text}**"
|
|
|
|
else:
|
|
|
|
return text
|
|
|
|
|
|
|
|
def link(self, text, url, arguments="", display=False):
|
|
|
|
if display:
|
|
|
|
if arguments:
|
|
|
|
return "{{" + url + f"|{text}|" + arguments + "}}"
|
|
|
|
else:
|
|
|
|
return "{{" + url + f"|{text}" + "}}"
|
|
|
|
else:
|
|
|
|
if arguments:
|
|
|
|
return f"[[{url}|{text}|{arguments}]]"
|
|
|
|
else:
|
|
|
|
return f"[[{url}|{text}]]"
|
|
|
|
|
|
|
|
def macro(self, macro, arguments=""):
|
|
|
|
return f"<<{macro}({arguments})>>"
|
|
|
|
|
|
|
|
def table_cell(self, text, arguments=""):
|
|
|
|
if text:
|
|
|
|
return f"||<{arguments}> {text} "
|
|
|
|
else:
|
|
|
|
return "||"
|
|
|
|
|
|
|
|
def table_row_end(self):
|
|
|
|
return "||\n"
|