You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like the documentation is not rendering correctly when a space is not present after using backticks.
For example making ``DataFrame`` render with monospace font will work as expected.
But using plural ``DataFrame``s does not have a space between `` and s does not identify the closing backticks and the whole paragraph may render with monospace.
Couldn't find a way to obtain the expected result (monospace text followed by normal text with a space in between). Not sure if there is a way, but if it's not possible, I think it would be better to use something like the next options (instead of the wrong rendering):
Avoid having the s for plurals
Leave a space before the s
Use a single quote (e.g. ``DataFrame``'s) which seems to be rendering correctly as DataFrame's.
The text was updated successfully, but these errors were encountered:
It seems like the documentation is not rendering correctly when a space is not present after using backticks.
For example
making ``DataFrame`` render with monospace font
will work as expected.But
using plural ``DataFrame``s does not have a space between `` and s
does not identify the closing backticks and the whole paragraph may render with monospace.This image shows a real case in https://pandas.pydata.org/pandas-docs/stable/merging.html#ignoring-indexes-on-the-concatenation-axis:
Couldn't find a way to obtain the expected result (monospace text followed by normal text with a space in between). Not sure if there is a way, but if it's not possible, I think it would be better to use something like the next options (instead of the wrong rendering):
s
for pluralss
``DataFrame``'s
) which seems to be rendering correctly asDataFrame
's.The text was updated successfully, but these errors were encountered: