##// END OF EJS Templates
Fix -o
Fix -o

File last commit:

r48:d8716915 default
r70:b03a5f77 tip default
Show More
README.md
38 lines | 1.6 KiB | text/x-minidsrc | MarkdownLexer
formatting
r7 (инструкции на Русском - внизу)
Localization. Renamed to txt2web
r46 # txt2web
Alexander Sukhoverkhov
Initial commit
r0 Compiler for QSP games which creates monolithic HTML pages.
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
## Usage
There are three mastery levels
Adapted README to RhodeCode's MD renderer
r48 1. **Just build me the game**:
`txt2web game.txt`
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 And it will create the game in game.html
Adapted README to RhodeCode's MD renderer
r48 2. **I know what I'm doing**:
`txt2web game.txt -o game.html --body body.html --js jquery.js my-js-library.js --css styles/*.css`
All options are self-explanatory. The result is a monolithic html specified with the `-o` option. Default `body.html` and `default.css` (used by the first mastery level) can be found in `extras` directory.
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
Adapted README to RhodeCode's MD renderer
r48 3. **I'm a frontend developer**!
`txt2web game.txt -c -o game.js`
It just builds the game script into a js you can put on your website. To run the game execute `qsp_start()`
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
Localization. Renamed to txt2web
r46 # txt2web
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 Компилятор для игр на QSP создающий монолитные страницы на HTML.
## Инструкции
Есть три уровня мастерства.
Adapted README to RhodeCode's MD renderer
r48 1. **Просто собери мне игру**:
`txt2web game.txt`
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 Создаст игру в game.html
Adapted README to RhodeCode's MD renderer
r48 2. **Я знаю что делаю**:
`txt2web game.txt -o game.html --body body.html --js jquery.js my-js-library.js --css styles/*.css`
Если вы знаете что делаете, то для вас смысл опций очевиден. `body.html` и `default.css` лежат в каталоге `extras`.
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
Adapted README to RhodeCode's MD renderer
r48 3. **Я - фронтендер!**
`txt2web game.txt -c -o game.js`
Просто соберёт игру в Javascript файл который вы можете разместить на своём сайте как вам угодно. Чтобы запустить игру: `qsp_start()`