• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

jasshelper documentation format?

Status
Not open for further replies.
Level 2
Joined
Mar 27, 2013
Messages
9
I was wondering how one should go about creating a documentation similar to JassHelper's? Is it some sort of template? I noticed cJass's documentation follows the same format (or was it just copy/pasted and edited?)
 
Level 23
Joined
Apr 16, 2012
Messages
4,041
you didnt read topics name?
he means the JassHelper manual made by vexorian, its .html hosted on wc3c(dont know exact link)

to question, I dont know if it has templates but its really easy to write similar or same one, it uses close to no CSS and no JavaScript so its almost plain HTML, very easy to recreate
 
Level 2
Joined
Mar 27, 2013
Messages
9
Yeah, I've browsed the .html source and it's kinda messy.
I was hoping there was some tool that I could just use to paste text and get the same format. :)
 
Level 23
Joined
Apr 16, 2012
Messages
4,041
it is messy because its quite shit tbh

all the Natives could be warpped in <div class="native">nativeFunction</div> and the native could be defined in the
<script type='text/css'>
.native{
color: #FF00FF;
}
</script>

and so on for BJs and stuff like the code block.

That would make it a bit more clean while keeping the same format

It is possible to make some program that takes your .txt file and does some magic and produces .html with all that shit done
 
Status
Not open for further replies.
Top