\documentclass{article}
\usepackage{ulem}
\usepackage{graphicx}
\usepackage{hyperref}
\pagestyle{headings}
\begin{document}
\section{About This Rule}
<table class="horde-table">\textbf{Name} & interwiki \\
\hline
\textbf{Type} & inline \\
\hline
\textbf{Syntax} normal & \texttt{``[SiteName](SiteName):[PageName](PageName)``} \\
\hline
\textbf{Syntax} described &  \\
\hline
** &  \\
\hline
</table>
\section{Parse Configuration Keys}
None.

\section{Render Configuration Keys}
<table class="horde-table">\textbf{Format} & \textbf{Key} & \textbf{Type} & \textbf{Description} \\
\hline
\texttt{Xhtml} & \texttt{sites} & array &  \\
\hline
 &  &  &  \\
\hline
that site &  &  &  \\
\hline
\texttt{Xhtml} & \texttt{target} & string &  \\
\hline
e.g., '\_blank' &  &  &  \\
\hline
</table>
\section{Description}
Interwiki is a way of representing wiki pages on other wikis.  To mark an<br />
interwiki link, type the name of the site, a colon, then the name of the page<br />
on the interwiki site.<br />
Text\_Wiki needs to know the URL for the various interwiki sites so it make<br />
clickable links; to tell Text\_Wiki the site names and urls, use the<br />
\texttt{[setRenderConf()](MethodSetRenderConf)} method.  The array key should be the<br />
name of the site, and the array value should be the URL part leading up to the<br />
page-value.

<pre><code class="language-php">
// [snip] create a Text\_Wiki object called \$wiki
// set up an array of interwiki site names and urls
\$sites = array(
    'MeatBall'    => 'http://www.usemod.com/cgi-bin/mb.pl?\%s',
    'Advogato'    => 'http://advogato.org/\%s',
    'Wiki'        => 'http://c2.com/cgi/wiki?\%s'
);
// configure the interwiki rule
\$wiki->setRenderConf('xhtml', 'interwiki', 'sites', \$sites);
</code></pre>
\begin{quote}
\textbf{Note:} Note the use of \%s in the above URL strings; the \%s will be<br />
replaced by the page name.  If you specify a string that does not have a<br />
\%s in it, Text\_Wiki will assume that the page name should go at the very<br />
end of the string.


\end{quote}
\end{document}
