Tims_blog_2025-11-29_14:23:12.40_transforms >> Tims_blog_2026-04-25_16:01:26.25_transforms >> garage_door_opener_transforms >> _bug9HuMcJvz_transforms >> Business_Ideas 

TB Wiki

Login

Regression Test

Expected HTML for page "DocLinks"


expected html
nothing
t1 t
2<table align="right"><tr><td><div class="toc">
3Contents:
4<ul>
5  <li><a href="#Introduction">Introduction</a></li>
6  <li><a href="#Link_Syntax">Link&nbsp;Syntax</a></li>
7  <ul>
8    <li><a href="#Plain_links">Plain&nbsp;links</a></li>
9    <li><a href="#Links_with_cover_text">Links&nbsp;with&nbsp;cover&nbsp;text</a></li>
10    <li><a href="#Links_to_pages_on_this_site">Links&nbsp;to&nbsp;pages&nbsp;on&nbsp;this&nbsp;site</a></li>
11    <li><a href="#Links_to_page_sections_or_anchors">Links&nbsp;to&nbsp;page&nbsp;sections&nbsp;or&nbsp;anchors</a></li>
12    <ul>
13      <li><a href="#Define_an_anchor">Define&nbsp;an&nbsp;anchor</a></li>
14      <li><a href="#Link_to_an_anchor">Link&nbsp;to&nbsp;an&nbsp;anchor</a></li>
15    </ul>
16    <li><a href="#Links_to_non-html_files_on_this_site">Links&nbsp;to&nbsp;non-html&nbsp;files&nbsp;on&nbsp;this&nbsp;site</a></li>
17    <li><a href="#Inline_images">Inline&nbsp;images</a></li>
18  </ul>
19  <li><a href="#Examples">Examples</a></li>
20  <ul>
21    <li><a href="#Anchor_'foo'">Anchor&nbsp;'foo'</a></li>
22  </ul>
23</ul>
24</div></td></tr></table>
25<h1><a name="Introduction">Introduction</a>
26<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Introduction">edit section</a>]</font></span>
27</h1>
28One of the strengths of TBWiki is the ability to add links to other pages or
29external sites very easily.  Also, it is easy to refer to downloadable content
30and to place images inline on a page as well.
31<p>
32<h1><a name="Link_Syntax">Link Syntax</a>
33<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Link_Syntax">edit section</a>]</font></span>
34</h1>
35<h2><a name="Plain_links">Plain links</a>
36<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Plain_links">edit section</a>]</font></span>
37</h2>
38Here is the syntax for creating links:
39<p>
40A URL which is placed "in the open" on a page will be converted into a link
41to the referenced site.  The following URL types are recognized:
42<ul><li>http:
43<li>https:
44<li>mailto:
45<li>ftp:
46<li>media: or Media:
47<li>image: or Image:
48</ul>
49<p>
50Here's an example:
51<ul><li>https<b>:</b>//www.google.com/ =&gt; <a href="https://www.google.com/">https://www.google.com/</a> - a plain external link
52</ul>
53<p>
54Most other links are created using double-brackets.
55<p>
56<h2><a name="Links_with_cover_text">Links with cover text</a>
57<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Links_with_cover_text">edit section</a>]</font></span>
58</h2>
59If you want to
60display different text for a link, in place of the URL, place the reference
61in double-brackets, followed by a vertical bar, then the cover text.
62<p>
63Here's an example:
64<ul><li>[<b></b>[http<b></b>:<b></b>//www.python.org/ |python web site]] =&gt; <a href="http://www.python.org">python web site</a> -  an external link with cover text
65</ul>
66<p>
67<h2><a name="Links_to_pages_on_this_site">Links to pages on this site</a>
68<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Links_to_pages_on_this_site">edit section</a>]</font></span>
69</h2>
70To reference a page on this site, just put the name of the page (with
71or without spaces) inside double brackets:
72<p>
73<ul><li>[<b></b>[FrontPage]] =&gt; <a href="/tbwiki/FrontPage">FrontPage</a> a page name on this site
74<li>[<b></b>[FrontPage|the TBWiki home page]] =&gt; <a href="/tbwiki/FrontPage">the TBWiki home page</a> - a page name with cover text
75<li>[<b></b>[page with spaces]] =&gt; <a style="color:red;" href="/tbwiki/page_with_spaces">page with spaces</a> - a page name with spaces
76</ul>
77<p>
78<h2><a name="Links_to_page_sections_or_anchors">Links to page sections or anchors</a>
79<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Links_to_page_sections_or_anchors">edit section</a>]</font></span>
80</h2>
81Every header on a page creates a section (in HTML terms, an anchor)
82You can refer to a section or anchor on the same page using '#&lt;section name&gt;'
83or '#&lt;anchor name'
84<p>
85<ul><li>[<b></b>[#Examples]] =&gt; <a href="#Examples">#Examples</a> - link to 'Examples' section on this page
86<li>[<b></b>[#Examples|the example section]] =&gt; <a href="#Examples">the example section</a> - section link with cover text
87<li>[<b></b>[FrontPage#Working_Areas]] =&gt; <a href="/tbwiki/FrontPage#Working_Areas">FrontPage#Working_Areas</a> - section link on another page
88</ul>
89<p>
90<h3><a name="Define_an_anchor">Define an anchor</a>
91<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Define_an_anchor">edit section</a>]</font></span>
92</h3>
93You can create an named anchor (called 'foo') on a page
94    with {<b></b>{HTML(&lt;a name="foo"&gt;&lt;/a&gt;)}}
95<p>
96<h3><a name="Link_to_an_anchor">Link to an anchor</a>
97<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Link_to_an_anchor">edit section</a>]</font></span>
98</h3>
99<ul><li>[<b></b>[#foo]] =&gt; <a href="#foo">#foo</a> - link to anchor 'foo' on this page
100<li>[<b></b>[FrontPage#foo]] =&gt; <a href="/tbwiki/FrontPage#foo">FrontPage#foo</a> - link to anchor foo on FrontPage
101</ul>
102<p>
103<h2><a name="Links_to_non-html_files_on_this_site">Links to non-html files on this site</a>
104<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Links_to_non-html_files_on_this_site">edit section</a>]</font></span>
105</h2>
106<ul><li>[ [media:bird-image.jpg]] =&gt; <a href="/tbw-files/bird-image.jpg">media:bird-image.jpg</a> a link to non-html content on this site
107<li>[ [media:bird-image.jpg|a neat bird image]] =&gt; <a href="/tbw-files/bird-image.jpg">a neat bird image</a> - a link to non-html content, with cover text
108</ul>
109<p>
110<h2><a name="Inline_images">Inline images</a>
111<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Inline_images">edit section</a>]</font></span>
112</h2>
113<ul><li>[<b></b>[image:bird-image.jpg]] =&gt; <img src="/tbw-files/bird-image.jpg" > place an image inline on this page
114</ul>
115<p>
116See <a href="/tbwiki/DocImages">DocImages</a> for different attributes you can use for to control
117image output (e.g. size, alternate text).
118<p>
119<h1><a name="Examples">Examples</a>
120<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Examples">edit section</a>]</font></span>
121</h1>
122See <a style="color:red;" href="/tbwiki/TestLinks?action=split">the TestLinks page in split mode</a>
123<p>
124<h2><a name="Anchor_'foo'">Anchor 'foo'</a>
125<span align=right class="section_edit_link">[<a href="/tbwiki/DocLinks?action=edit&section=Anchor_'foo'">edit section</a>]</font></span>
126</h2>
127Here is the actual definition of anchor <a name="foo"></a>'foo'
128<p>
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op

Differences for page "DocLinks"


expected html
generated html
t No Differences Found t No Differences Found 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op

Update saved output

Back to diff page

Return to Regression_Test page
TBWiki engine 1.9.3 by Tim Bird