8354320: Changes to jpackage.md cause pandoc warning

Reviewed-by: almatvee, ihse, alanb
This commit is contained in:
Alexey Semenyuk 2025-04-15 16:06:12 +00:00
parent 36864a2a08
commit fc1464727f
2 changed files with 10 additions and 2 deletions

View file

@ -468,7 +468,15 @@ AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
AC_MSG_CHECKING([if the pandoc smart extension needs to be disabled for markdown])
if $PANDOC --list-extensions | $GREP -q '+smart'; then
AC_MSG_RESULT([yes])
PANDOC_MARKDOWN_FLAG="markdown-smart"
PANDOC_MARKDOWN_FLAG="$PANDOC_MARKDOWN_FLAG-smart"
else
AC_MSG_RESULT([no])
fi
AC_MSG_CHECKING([if the pandoc tex_math_dollars extension needs to be disabled for markdown])
if $PANDOC --list-extensions | $GREP -q '+tex_math_dollars'; then
AC_MSG_RESULT([yes])
PANDOC_MARKDOWN_FLAG="$PANDOC_MARKDOWN_FLAG-tex_math_dollars"
else
AC_MSG_RESULT([no])
fi

View file

@ -236,7 +236,7 @@ The `jpackage` tool will take as input a Java application and a Java run-time im
will be ignored, and these expandable substrings will be
replaced by values calculated by the app launcher.
Prefix the dollar sign character with the backslash character (\)
Prefix the dollar sign character with the backslash character (\\)
to prevent substring expansion.
<a id="option-java-options">`--java-options` *options*</a>