Some more markdown user manual compatibility fixes.

This commit is contained in:
Bartosz Taudul
2026-06-06 01:48:32 +02:00
parent 661c664b75
commit fc5318dcad
2 changed files with 12 additions and 6 deletions

View File

@@ -13,6 +13,12 @@ sed -i -e 's@\\MMB{}~@@g' _tmp.tex
sed -i -e 's@\\RMB{}~@@g' _tmp.tex
sed -i -e 's@\\Scroll{}~@@g' _tmp.tex
# Resolve \circled{} markers and lstlisting escapeinside (@...@) snippets, which
# pandoc would otherwise emit verbatim or drop, to their Unicode equivalents.
sed -i -e 's|@\\circled{a}@|(a)|g' -e 's|@\\circled{b}@|(b)|g' -e 's|@\\circled{c}@|(c)|g' _tmp.tex
sed -i -e 's|\\circled{a}|(a)|g' -e 's|\\circled{b}|(b)|g' -e 's|\\circled{c}|(c)|g' _tmp.tex
sed -i -e 's|@\\ldots@|…|g' _tmp.tex
sed -i -e 's@\\nameref{quicklook}@A quick look at Tracy Profiler@g' _tmp.tex
sed -i -e 's@\\nameref{firststeps}@First steps@g' _tmp.tex
sed -i -e 's@\\nameref{client}@Client markup@g' _tmp.tex

View File

@@ -1225,15 +1225,15 @@ Zone objects can't be moved or copied.
>
> {
> ZoneNamed(Zone1, true);
> @\circled{a}@
> (a)
> {
> ZoneNamed(Zone2, true);
> @\circled{b}@
> (b)
> }
> @\circled{c}@
> (c)
> }
>
> It is valid to set the `Zone1` text or name *only* in places or . After `Zone2` is created at you can no longer perform operations on `Zone1`, until `Zone2` is destroyed.
> It is valid to set the `Zone1` text or name *only* in places (a) or (c). After `Zone2` is created at (b) you can no longer perform operations on `Zone1`, until `Zone2` is destroyed.
### Filtering zones {#filteringzones}
@@ -4282,8 +4282,8 @@ You need to take special care when reading call stacks. Contrary to their name,
Let's say you are looking at the call stack of some function called within `Application::Run`. This is the result you might get:
0. @\ldots@
1. @\ldots@
0.
1.
2. Application::Run
3. std::unique_ptr<Application>::reset
4. main