From a3021a1756e236643bf445d9285921877ee2b418 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Mon, 12 Aug 2024 01:21:31 +0300 Subject: [PATCH] content/presentation-mode: Fix presentation mode links - MyST mixes document, ref, and HTML links in the same syntax, so this can't be forced to be a HTML link, so it tries to parse it as a semantic internal link, fails, and breaks the build. - Temporary workaround: tell it to evaluate it as ReST and leave it as it was. --- content/presentation-mode.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/presentation-mode.md b/content/presentation-mode.md index c6f5316..eaa9ee5 100644 --- a/content/presentation-mode.md +++ b/content/presentation-mode.md @@ -33,5 +33,7 @@ In presentation mode: Examples: -- [View this page as an example of minipres](../sample-episode-rst/?minipres). -- [View this page in "plain" mode](../sample-episode-rst/?plain). +```{eval-rst} +- `View this page as an example of minipres <../sample-episode-rst/?minipres>`__. +- `View this page in "plain" mode <../sample-episode-rst/?plain>`__. +```