ozmo-compile
v0.0.4
Published
Ozmo markup language compiler
Downloads
4
Readme
Ozmo compiler
Ozmo markup language compiler
Code
@image test.png
text, lots of text
@video movie.mp3
@h1 A title
#code js
console.log('it works :) !');
#end
Compile to JSON
import ozmo from 'ozmo-compile'
const text = `` // ozmo code in text variable
const result = ozmo(text)
console.log(JSON.stringify(result))