Italicize text containing a link

余生长醉 提交于 2020-01-10 08:50:29

问题


I have an RST where I want an italicized link. However, the markup

*Warning: `Watch this <http://www.youtube.com/watch?v=dQw4w9WgXcQ&ob=av3e>`_!*

renders in HTML as

<em>Warning: `Watch this <http://www.youtube.com/watch?v=dQw4w9WgXcQ&ob=av3e>`_!</em>

That is, the italics render but the link doesn't. How do I get italics around the link?


回答1:


The problem is that reST markup cannot be nested.

I managed to get it work with this:

Warning: |text|_

.. _text: http://www.youtube.com/watch?v=dQw4w9WgXcQ&ob=av3e

.. |text| replace:: *Watch this*


来源:https://stackoverflow.com/questions/10669099/italicize-text-containing-a-link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!