How can I make a part of a word bold in reStructuredText?
Here is an example of what I need: “.rst stands for restructured text.”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I was surprised that you could not simply write
but the reStructuredText specification indeed states that inline markup must be followed by white-space or one of
-.,:;!?\/'")]}or>, so the above string of reStructuredText is not valid. However, only a minor change is required to get valid character markup with backslash escapes. Changing the above toworks fine. To see this in action try the online reST to HTML converter.