sc0ttj / mdsh

A simple static site generator, using Markdown and Bash
https://sc0ttj.github.io/mdsh/
10 stars 0 forks source link

Subshell parsing fixes #74

Closed sc0ttj closed 5 years ago

sc0ttj commented 5 years ago

This PR changes the way Bash code can be embedded inside your Markdown..

It used to be this:

some markdown $(your_code) text here

Now, after the changes in this PR, it's this:

some markdown <?bash your_code ;?> text here

Reasons: