<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/tablemd/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/tablemd/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 09 Jun 2016 14:42:45 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/tablemd/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/tablemd/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="readme-file-for-tablemd"&gt;Readme file for TableMD&lt;/h1&gt;
&lt;p&gt;TableMD is a simple CSV table converter. It takes a Comma-Separated-Value (CSV) file as input and processes it into a Markdown or Docbook table.&lt;/p&gt;
&lt;p&gt;The CSV text strings should be double quoted to help procesing. If it is not and the processor encounters a comma, it will signal the end of that field.&lt;/p&gt;
&lt;p&gt;Example : in.csv  (located in the test directory)&lt;br/&gt;
&lt;strong&gt; &lt;code&gt;Num,File,sequence&lt;/code&gt; &lt;/strong&gt; &lt;br/&gt;
&lt;strong&gt; &lt;code&gt;1,Piggy.out,"1,2,3,4"&lt;/code&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;code&gt;2,"Fast.in",2&lt;/code&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;code&gt;"3",Wiffle.z,"5,6,7,8,9,9,9,"&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this example the header would be the top row and that would define the columns. Everthig after that would be expected to follow that pattern of columns.&lt;/p&gt;
&lt;p&gt;After processing it with TableMD it will look like this:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Num&lt;/th&gt;
&lt;th&gt;File&lt;/th&gt;
&lt;th&gt;sequence&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Piggy.out&lt;/td&gt;
&lt;td&gt;1,2,3,4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Fast.in&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Wiffle.z&lt;/td&gt;
&lt;td&gt;5,6,7,8,9,9,9,&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;If TableMD cannot make sense of a line because of missplaced or nonexistant double quotes, it will then just replace commas with bars and try to format it as best it can.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Versions&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1.01&lt;/td&gt;
&lt;td&gt;Initial release&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1.02&lt;/td&gt;
&lt;td&gt;Fixed install issues&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1.10&lt;/td&gt;
&lt;td&gt;Added Docbook table support&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Questions &amp;amp; Comments?&lt;/strong&gt;&lt;br/&gt;
email: deannelson@users.sourceforge.net&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Building From Source &lt;/strong&gt;&lt;br/&gt;
To build from source you will need the following:&lt;br/&gt;
1. Working QT4 or Qt5 environment &lt;br/&gt;
2. Linux or WIndows platform&lt;br/&gt;
3. QtCreator or command line&lt;/p&gt;
&lt;p&gt;If you are using QtCreator&lt;br/&gt;
1. Load the tablemd.pro pjoject in QtCreator&lt;br/&gt;
2. Select "Build All" &lt;br/&gt;
3. After it compiles, look in "Release" directory for the executable (under windows) or in the same directory (under Linux).&lt;/p&gt;
&lt;p&gt;If you are using command line compilation, use the following commands to build tableMD:&lt;br/&gt;
&lt;code&gt;cd tablemd&lt;/code&gt;&lt;br/&gt;
&lt;code&gt;qmake&lt;/code&gt;&lt;br/&gt;
&lt;code&gt;make&lt;/code&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dean Nelson</dc:creator><pubDate>Thu, 09 Jun 2016 14:42:45 -0000</pubDate><guid>https://sourceforge.net762005c7a184f58011af4a70e6a039b073d3d8db</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/tablemd/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="readme-file-for-tablemd"&gt;Readme file for TableMD&lt;/h1&gt;
&lt;p&gt;TableMD is a simple CSV to MarkDown table converter. It takes a Comma-Separated-Value (CSV) file as input and processes it into a Markdown table.&lt;/p&gt;
&lt;p&gt;The CSV text strings should be double quoted to help procesing. If it is not and the processor encounters a comma, it will sighnal the end of that field.&lt;/p&gt;
&lt;p&gt;Example : in.csv  (located in the test directory)&lt;br/&gt;
&lt;strong&gt; &lt;code&gt;Num,File,sequence&lt;/code&gt; &lt;/strong&gt; &lt;br/&gt;
&lt;strong&gt; &lt;code&gt;1,Piggy.out,"1,2,3,4"&lt;/code&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;code&gt;2,"Fast.in",2&lt;/code&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;code&gt;"3",Wiffle.z,"5,6,7,8,9,9,9,"&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this example the header would be the top row and that would define the columns. Everthig after that would be expected to follow that pattern of columns.&lt;/p&gt;
&lt;p&gt;After processing it with TableMD it will look like this:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Num&lt;/th&gt;
&lt;th&gt;File&lt;/th&gt;
&lt;th&gt;sequence&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Piggy.out&lt;/td&gt;
&lt;td&gt;1,2,3,4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Fast.in&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Wiffle.z&lt;/td&gt;
&lt;td&gt;5,6,7,8,9,9,9,&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;If TableMD cannot make sense of a line because of missplaced or nonexistant double quotes, it will then just replace commas with bars and try to format it as best it can.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Versions&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1.01&lt;/td&gt;
&lt;td&gt;Initial release&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Questions &amp;amp; Comments?&lt;/strong&gt;&lt;br/&gt;
email: deannelson@users.sourceforge.net&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dean Nelson</dc:creator><pubDate>Wed, 09 Sep 2015 00:09:41 -0000</pubDate><guid>https://sourceforge.netbe4947e8f8f86e9e951f1372950925e5b559aa88</guid></item><item><title>Home modified by Dean Nelson</title><link>https://sourceforge.net/p/tablemd/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/tablemd/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/deannelson/"&gt;Dean Nelson&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-55e7d6890594ca271106a50a" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dean Nelson</dc:creator><pubDate>Thu, 03 Sep 2015 05:11:37 -0000</pubDate><guid>https://sourceforge.netee6a2a97619dbfdde03c805fa20f38cadf25ba8e</guid></item></channel></rss>