I'd like to use genealogytree with a slightly modified "traditional" template (no box around cells). The slight modification is to allow comments. My code works, but a period is automatically added right after the comment. I don't want this period.
My MWE:
\documentclass[varwidth,margin=10pt]{standalone}
\usepackage[all]{genealogytree}
\gtrset{mytree/.style={
template=database traditional,
database format=medium no marriage,
}
}
\begin{document}
\begin{tikzpicture}
\genealogytree[mytree]{
parent{
g{name=Son, comment=Prince of the Valley}
p{name=Father, comment=King of the Hill}
}
}
\end{tikzpicture}
\end{document}
How can I prevent the period?
