Compare commits

...

2 commits

Author SHA1 Message Date
LordMZTE 23d36d8705 add transpilation condition
All checks were successful
continuous-integration/drone/push Build is passing
2021-03-30 21:50:11 +02:00
LordMZTE e20bd612c5 update makefile and themes 2021-03-30 21:50:03 +02:00
3 changed files with 21 additions and 4 deletions

View file

@ -1,3 +1,8 @@
THEME=neutral
BACKGROUND_COLOR=\\\#333333
MMDC_BASE_CMD=mmdc --theme $(THEME) --backgroundColor $(BACKGROUND_COLOR) --puppeteerConfigFile ./puppeteer-config.json
.PHONY: All
All: build/de.png build/de.svg build/en.png build/en.svg
@ -7,8 +12,8 @@ clean:
build/%.svg: %.mmd
@mkdir -p $(@D)
mmdc -i $< -o $@ -p ./puppeteer-config.json
$(MMDC_BASE_CMD) -i $< -o $@
build/%.png: %.mmd
@mkdir -p $(@D)
mmdc -i $< -o $@ -w 2000 -p ./puppeteer-config.json
$(MMDC_BASE_CMD) -i $< -o $@ -w 2000

8
de.mmd
View file

@ -23,7 +23,13 @@ F --> |Nein| Schlecht
F --> |Ja| G([Wurde die Sprache von Microsoft entwickelt?])
G --> |Ja| Schlecht
G --> |Nein| H([Läuft die Sprache nur in einer VM?])
G --> |Nein| N([Wird die Sprache zu einer anderern transpiliert?])
N --> |Ja| O(["Kommen alle Targets der sprache in diesem Test bei #quot;schlecht#quot; an?"])
N --> |Nein| H([Läuft die Sprache nur in einer VM?])
O --> |Ja| Ok
O --> |Nein| SGut
H --> |Ja| L([Wird die Sprache für embedded-scripting verwendet?])
H --> |Nein| M([Hat die Sprache einen Garbage Collector?])

8
en.mmd
View file

@ -23,7 +23,13 @@ F --> |No| Bad
F --> |Yes| G([Has the language been developed by Microsoft?])
G --> |Yes| Bad
G --> |No| H([Does the language only run in a VM?])
G --> |No| N([Is the language transpiled to another?])
N --> |Yes| O(["Do all targets of the langauge arrive at #quot;Bad#quot; in this test?"])
N --> |No| H([Does the language only run in a VM?])
O --> |Yes| Ok
O --> |No| VGood
H --> |Yes| L([Is the language used for embedded scripting?])
H --> |No| M([Does the language have a Garbage Collector?])