<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
	"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="content-type" content="Text/html; Charset=ISO-8859-1">	<title>uniq (Hidemaru Editor Macro)</title>
	<meta name="Author" content="AGATA, Yasushi">
	<meta name="Description" content="uniq : Hidemaru Editor Macro which is same as 'uniq' in UNIX">
	<meta name="KeyWords" content="Hidemaru, Macro, uniq">
	<link rev="MADE" href="mailto:agata@iis.u-tokyo.ac.jp">
	<link rel="PARENT" href="../index.html">

	<!--<link rel="stylesheet" type="text/css" href="****.css">-->
	<style type="text/css">
	<!--
	body {
		background-color: #ffffff;
		font-size: small;
	}
	a:link    {color:blue;}
	a:visited {color:purpble;}
	a:active  {color:red;}
	//-->
	</style>
</head>

<body>

<!--================- Main Content =================-->

<h1>tabtext2html</h1>

<p>Hidemaru Macro which converts a tabbed text to a HTML table.

<p><a href="../../">Archive</a>

<hr>

<h2>Usage</h2>

<p>Save the macro source shown below to the directory where Hidemaru editor is installed.</p>

<p>Select [Macro] menu from Hidemaru</p>

<hr>

<h2>Source Code</h2>

<table border="2" width="90%">
<tr><td bgcolor="#FFFFCC">
<pre>
	// Line Head --> &lt;tr&gt;&lt;td&gt;
	replaceall &quot;^\\f.*\\f&quot;, &quot;&lt;tr&gt;&lt;td&gt;\\1&quot;   ,regular;

	// Line Tail --> &lt;/td&gt;&lt;/tr&gt;
	replaceall &quot;\\f.\\f$&quot;, &quot;\\1&lt;/td&gt;&lt;/tr&gt;&quot; ,regular;

	// HTAB --> &lt;/td&gt;&lt;td&gt;
	replaceall &quot;\t&quot;, &quot;&lt;/td&gt;&lt;td&gt;&quot; ,regular;

	// File Top  : &lt;table border=&quot;1&quot;&gt;
	gofiletop;
	insert &quot;&lt;table border=\&quot;1\&quot;&gt;&quot;;
	insertreturn;

	// File End  : &lt;/table&gt;
	gofileend;
	insertreturn;
	insert &quot;&lt;/table&gt;&quot;;

</pre>
</td></tr>
</table>

<!--================- Main Content End =================-->

<hr>
<a href="../../">Archive</a>
</body>
</html
>