-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .vscode settings to generate blog html on save AND fix borked …
…CSS 😱 (#34) * run html generation on file save * update script to update for single file * fix borked css
- Loading branch information
1 parent
b027eb6
commit a477184
Showing
4 changed files
with
65 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"liveServer.settings.port": 5502, | ||
"emeraldwalk.runonsave": { | ||
"commands": [ | ||
// { | ||
// "match": ".*", | ||
// "isAsync": true, | ||
// "cmd": "echo 'I run for all files.'" | ||
// }, | ||
{ | ||
"match": "blog/.*/src.md$", | ||
"cmd": "echo 'I am a .md file ${file}.'; julia build-blogs/run.jl ${file}" | ||
}, | ||
{ | ||
"match": "blog/__template/.*$", | ||
"cmd": "echo 'A __template file has been saved ${file}.'; julia build-blogs/run.jl" | ||
}, | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters