#! /usr/bin/python3
import sys, re
import html_gen as h
from process_funcs import bash
import html_report_funcs as hr
last_edit = "Last edited on 2026-01-28 16:55:25 by stolfi"
def main():
global last_edit
title = "Page ??? - ???
???"
st = h.new_doc(title, "#eeffdd")
hr.basic_figure(st, "annotated.png", None)
h.section(st, 2, "About the figure")
h.section(st, 3, "General")
h.parags("""
This clip ???
""")
h.section(st, 3, "Annotations")
h.parags("""
???
""")
# h.section(st, 2, "Discussion")
# h.parags(st, """""")
h.output_doc(st, sys.stdout, 4, last_edit)
return 0
# ----------------------------------------------------------------------
main()