On Wed, Dec 31, 2008 at 01:01:31AM -0800, Andrea wrote: > > Hi all, > sphinx seems a great tool. I work with GIS, and I'm reading two > websites created using sphynx: > - http://mapserver.osgeo.org/index.html > - http://workshops.opengeo.org/openlayers/intro/doc/en/
Bah, but http://docs.openlayers.org/ hasn't caught your eye yet? :) (It also uses Sphinx, though I guess the content is less enticing.) > Reading these site I would like to use sphynx to write documentation > for a little project of mine. I'm looking for a tutorial written for a > first time user, not a documentation page for a power user. An how-to > to build a simple "hello word" html page. Is there this kind of doc? I didn't see one, but it's pretty simple: $ sphinx-quickstart (Answer questions) $ vi myfile.rst (Write some reStructuredText: http://docutils.sourceforge.net/docs/user/rst/quickref.html) $ vi index.rst Add the 'myfile' to the toctree: .. toctree:: myfile $ make html $ open build/html/index.html (in a browser) Regards, -- Christopher Schmidt Web Developer --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en -~----------~----~----~----~------~----~------~--~---
