diff options
| author | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-06-17 15:12:51 +0000 |
|---|---|---|
| committer | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-06-17 15:12:51 +0000 |
| commit | 0dabda5c6cd2f0e4996a5c0fbf17645d2fac6e85 (patch) | |
| tree | d151852657fd09ebf6c957ce46a5e12fb706d5ba /docutils/docs/user/rst/quickref.html | |
| parent | 85b75c3fa18bdfd6740ab01276efeba225641787 (diff) | |
| download | docutils-0dabda5c6cd2f0e4996a5c0fbf17645d2fac6e85.tar.gz | |
added embedded URI example; corrected link
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3505 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/docs/user/rst/quickref.html')
| -rw-r--r-- | docutils/docs/user/rst/quickref.html | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/docutils/docs/user/rst/quickref.html b/docutils/docs/user/rst/quickref.html index cdda16c68..fdb9a8adb 100644 --- a/docutils/docs/user/rst/quickref.html +++ b/docutils/docs/user/rst/quickref.html @@ -1070,8 +1070,8 @@ A transition marker is a horizontal line <td> <table width="100%"> <tr bgcolor="#99CCFF"><td><em>Fold-in form</em> - <tr><td>Indirect hyperlinks, like - <a href="http://www.python.org">Python</a>. + <tr><td>External hyperlinks, like + <a href="http://www.python.org/">Python</a>. </table> <tr valign="top"> <td> @@ -1094,6 +1094,28 @@ A transition marker is a horizontal line printed documents, where the link needs to be presented explicitly, for example as a footnote. + <p>reStructuredText also provides for <b>embedded URIs</b> (<a + href="../../ref/rst/restructuredtext.html#embedded-uris">details</a>), + a convenience at the expense of readability. A hyperlink + reference may directly embed a target URI inline, within angle + brackets. The following is exactly equivalent to the example above: + + <p><table border="1" width="100%" bgcolor="#ffffcc" cellpadding="3"> + <thead> + <tr align="left" bgcolor="#99CCFF"> + <th width="50%">Plain text + <th width="50%">Typical result + </thead> + <tbody> + + <tr valign="top"> + <td rowspan="2"> + <samp>External hyperlinks, like `Python +<br><http://www.python.org/>`_.</samp> + <td>External hyperlinks, like + <a href="http://www.python.org/">Python</a>. + </table> + <h4><a href="#contents" name="internal-hyperlink-targets" class="backref" >Internal Hyperlink Targets</a></h4> |
