Using bbdoc?

BlitzMax Forums/BlitzMax Beginners Area/Using bbdoc?

Stuart Morgan(Posted 2005) [#1]
Can anyone tell me how to use bbdoc?

I know how to add the docs in my code with Rem...bbdoc: etc, but dont know how to create/compile the actual html docs?


McFox(Posted 2005) [#2]
You have to synchronize it with the BMax doc.


Stuart Morgan(Posted 2005) [#3]
Okay...How do I do that?


GW(Posted 2005) [#4]
This is all i've ever been able to get on bbdoc.
http://www.blitzbasic.com/Community/posts.php?topic=44715#498302


Stuart Morgan(Posted 2005) [#5]
"bmk docmods" thats what I wanted to know.

Thanks. :-)


Perturbatio(Posted 2005) [#6]
if you're using windows, create a file in Blitzmax\bin called makedocs.bat

edit it in notepad and insert:
call bbdoc docmods
call bbdoc syncdocs

then all you have to do is double click the file or at the command prompt type makedocs

*EDIT*
in linux I would imagine you could create a shell script just as easily, something like:
#!/bin/bash 
./bbdoc docmods
./bbdoc syncdocs

just make sure you set it to be executable.


Stuart Morgan(Posted 2005) [#7]
Thanks Pert, much more convenient that way. :-)

Hope the new IDE will do all these command line tasks whithin the editor. (I'm lazy!)