This is LMFS-PSML Compiler. It has a built-in staging server and can compile one psml file into many usable HTML pages. It can reduce some of the development steps for you, so that you can complete the front-end development faster. It is free(libre) software, open source under the GPL v2.0 license.
- How to install:
$ sudo python3 setup.py install
- How to compile:
psml <file> {targets...}
Example:
$ cat > test.psml << "EOF"
> text{
> inner: Hello-World!
> }
> command(end)
> EOF
$ psml test.psml -o TEST
$ ls TEST
index.html
- Feedback: [email protected]