use ASCII '>=' to describe version dependency#6945
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6945 +/- ##
=======================================
Coverage 98.59% 98.59%
=======================================
Files 79 79
Lines 14684 14684
=======================================
Hits 14478 14478
Misses 206 206 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Co-authored-by: aitap <krylov.r00t@gmail.com>
|
Grrr. Somehow my manual testing with an empty package does something different from testing with I suspect that # using exactly the same arguments as pkgdown does
echo '\( 2 \ge 1 \)' | "/usr/bin/pandoc" "+RTS" "-K512m" "-RTS" "--to" "html4" "--from" "markdown+gfm_auto_identifiers-citations+emoji+autolink_bare_uris" "-t" "html4" "--indented-code-classes=R" "--section-divs" "--wrap=none" "--mathml"
# <p>( 2 )</p>
# using dollar notation instead of \(...\) that pkgdown generates from \eqn{} tags
echo '$2 \ge 1$' | "/usr/bin/pandoc" "+RTS" "-K512m" "-RTS" "--to" "html4" "--from" "markdown+gfm_auto_identifiers-citations+emoji+autolink_bare_uris" "-t" "html4" "--indented-code-classes=R" "--section-divs" "--wrap=none" "--mathml"
# <p><math display="inline" xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mn>2</mn><mo>≥</mo><mn>1</mn></mrow><annotation encoding="application/x-tex">2 \ge 1</annotation></semantics></math></p>
# enabling the additional syntax extensions
echo '\( 2 \ge 1 \)' | "/usr/bin/pandoc" "+RTS" "-K512m" "-RTS" "--to" "html4" "--from" "markdown+gfm_auto_identifiers-citations+emoji+autolink_bare_uris+tex_math_single_backslash" "-t" "html4" "--indented-code-classes=R" "--section-divs" "--wrap=none" "--mathml"
# <p><math display="inline" xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mn>2</mn><mo>≥</mo><mn>1</mn></mrow><annotation encoding="application/x-tex">2 \ge 1</annotation></semantics></math></p>As a result, all uses of |
|
FWIW, I don't see any other Line 49 in 5a955df Ideally we'd also have a new code-quality check for these, it's somewhat annoying since |
|
LGTM |
Closes #6931