all repos — hastyscribe @ ed65f1d67380a042544c366f6b63a53fcbc7b5d7

A professional markdown compiler.

Minor fixes.
h3rald h3rald@h3rald.com
Wed, 10 Nov 2021 13:39:35 +0100
commit

ed65f1d67380a042544c366f6b63a53fcbc7b5d7

parent

2a8235f0c659b676ea94fb841c9cfdb09416d528

2 files changed, 15 insertions(+), 12 deletions(-)

jump to
M README.mdREADME.md

@@ -1,6 +1,6 @@

-![nim](https://img.shields.io/badge/nim-powered-yellow.svg?link=https://nim-lang-org) -![release](https://img.shields.io/github/release/h3rald/hastyscribe/all.svg) -![build](https://img.shields.io/travis/h3rald/hastyscribe.svg) +[![Nimble](https://raw.githubusercontent.com/yglukhov/nimble-tag/master/nimble.png)](https://nimble.directory/pkg/hastyscribe) + +![release](https://img.shields.io/github/release/h3rald/hastyscribe.svg) ![license](https://img.shields.io/github/license/h3rald/hastyscribe.svg) # HastyScribe
M src/hastyscribe.nim.cfgsrc/hastyscribe.nim.cfg

@@ -1,9 +1,12 @@

-# https://blog.filippo.io/easy-windows-and-linux-cross-compilers-for-macos/ - -amd64.windows.gcc.path = "/usr/local/bin" -amd64.windows.gcc.exe = "x86_64-w64-mingw32-gcc" -amd64.windows.gcc.linkerexe = "x86_64-w64-mingw32-gcc" - -amd64.linux.gcc.path = "/usr/local/bin" -amd64.linux.gcc.exe = "x86_64-linux-musl-gcc" -amd64.linux.gcc.linkerexe = "x86_64-linux-musl-gcc" +# https://blog.filippo.io/easy-windows-and-linux-cross-compilers-for-macos/ + +amd64.windows.gcc.path = "/usr/local/bin" +amd64.windows.gcc.exe = "x86_64-w64-mingw32-gcc" +amd64.windows.gcc.linkerexe = "x86_64-w64-mingw32-gcc" + +amd64.linux.gcc.path = "/usr/local/bin" +amd64.linux.gcc.exe = "x86_64-linux-musl-gcc" +amd64.linux.gcc.linkerexe = "x86_64-linux-musl-gcc" + +--gc = "orc" +--opt = "size"