11 lines
341 B
Python
11 lines
341 B
Python
# A sample on how a custom html generator might look
|
|
|
|
from formatitko.html_generator import HTMLGenerator
|
|
|
|
from panflute import Link
|
|
|
|
class KSPHTMLGenerator(HTMLGenerator):
|
|
def generate_Link(self, e: Link):
|
|
if e.url.startswith("ksp://"):
|
|
e.url = "https://ksp.mff.cuni.cz/viz/" + e.url[len("ksp://"):]
|
|
return super().generate_Link(e)
|