Using bbdoc?

BlitzMax Forums/BlitzMax Beginners Area/Using bbdoc?

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?

You have to synchronize it with the BMax doc.

Okay...How do I do that?

This is all i've ever been able to get on bbdoc.
http://www.blitzbasic.com/Community/posts.php?topic=44715#498302

"bmk docmods" thats what I wanted to know.

Thanks. :-)

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.

Thanks Pert, much more convenient that way. :-)

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