-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mark
oddly interprets input as file where documentation suggests otherwise?
#100
Comments
In this case, Lines 24 to 30 in 0f64983
To ensure the input is text, use either markdown::mark(I("*F*(5, 7165) = 358.25, *p* < .001"))
markdown::mark(text = "*F*(5, 7165) = 358.25, *p* < .001") I think the file extension heuristics in |
Should be fixed now. Thanks again! |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I frequently use
markdown::mark()
, yet now ran into an issue where"*F*(5, 7165) = 358.25, *p* < .001"
was interpreted as a filename. Having never looked at the documentation before, it took me a while to figure out where that error came from.According to the docs
a single character string input will be treated as a file only when the file exists or it has a file extension
- neither seems to be the case here?Created on 2023-04-28 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: