mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-15 13:49:42 +02:00
8354320: Changes to jpackage.md cause pandoc warning
Reviewed-by: almatvee, ihse, alanb
This commit is contained in:
parent
36864a2a08
commit
fc1464727f
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue