The mdwn plugin can use one of several markdown implementations depending on some settings and what's available in the (Perl) environment.
It would be good to have a way to report exactly which version ended up being chosen for a given invocation. Either as a verbose log message, or by setting a variable that could be echoed into content by another command. — Jon, 2021-11-08.
Patch: https://github.com/jmtd/ikiwiki/commit/79297a0879e4f05f421b560bbbc74c2278dddc61
+1 && LGTM, but i'm not sure that needs gettext since it's debugging? -- anarcat
Thank you. RE gettext, I think there's value in localizing even debug messages. But I might have not approached it ideally, I did wonder whether instead of
gettext("mdwn: using Text::Markdown::markdown")
I should have done something like"mdwn: ".gettext("using ")."Text::Markdown::markdown"
. I bow to the superior gettext knowledge of just about anyone. — Jon, 2021-11-10I dropped the
gettext
in the end: the only localizable bit of the strings was 'using' so there wasn't much point. Thanks! — Jon, 2024-02-22
done: http://source.ikiwiki.branchable.com/?p=source.git;a=commitdiff;h=4996866181cbcce15ebb98f9c9142af26f2e80e7 — Jon, 2024-02-22