From: Francesco A. <fa...@ar...> - 2016-08-05 15:45:09
|
On Fri, Aug 05, 2016 at 06:13:44AM +0000, Deshpande, Vinita wrote: > I have created a txt file,with some content, which is formatted using > rst (for ex:, headings using "=", table etc). I would like to see, how > this would look as an html page. Can I please know how to do this? Hello Vinita, I use pandoc to convert from/to .rst (and a bunch of other formats). pandoc -o file.html file.rst Remember that you can add a .css stylesheet to modify the formatting as you see fit. |