[READ-ONLY] Mirror of https://github.com/thoda-dev/svg-lua. svg lua library
0

Configure Feed

Select the types of activity you want to include in your feed.

fix testing

Thomas DAGES (Dec 7, 2018, 1:48 PM +0100) 35b2d788 3bda4a17

+6 -5
+2 -1
.gitignore
··· 1 - lua5.3.4-win64/result.html 1 + lua5.3.4-win64/result.html 2 + lua5.3.4-win64/result.svg
+3 -3
README.md
··· 27 27 - open a command prompt un the subdirectory `lua5.3.4-win64` *(Shift+Right Click on Windows)* 28 28 - type `lua53.exe ..\test.lua` 29 29 30 - If you want to save the output in a file to see the result you can add ` > result.html` or ` >> result.html` following the previous command to save the result in an html file: 30 + If you want to save the output in a file to see the result you can add `> result.svg` or `>> result.svg` following the previous command to save the result in an html file: 31 31 32 - - `lua53.exe ..\test.lua > result.html`: this will create a file `result.html` in the directory with the resul, replacing the file if already exists this can be done using `test.bat`. 33 - - `lua53.exe ..\test.lua >> result.html`: this will create a file `result.html` in the directory with the resul, appending result to the existing file if already exists. 32 + - `lua53.exe ..\test.lua > result.svg`: this will create a file `result.svg` in the directory with the resul, replacing the file if already exists this can be done using `test.bat`. 33 + - `lua53.exe ..\test.lua >> result.svg`: this will create a file `result.svg` in the directory with the resul, appending result to the existing file if already exists. 34 34 35 35 If you are using a custom test file, replace `test.lua` by your file name. 36 36
+1 -1
lua5.3.4-win64/test.bat
··· 1 - lua53.exe ..\test.lua > result.html 1 + lua53.exe ..\test.lua > result.svg