Mark Lansky
Mark Lansky
I am not very good at bash so please test it. Especially I am not sure about OS X recognition
> From [Apple docs on `Library/Caches` dir:](https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html) Yep, thanks for the docs. So we only store build cache files? If yes, this is the right place. > Do you know...
Need some help converting from `[[ "$OS" = "Darwin"* ]]` to posix friendly grep as `[[ ]]` not supported. [stackoverflow.com/a/59553621](https://stackoverflow.com/a/59553621)
I got different errors in different browsers. This is how chromium reacts: 
Also when editing this REPL i couldn't save it: can't access property "imports", o is null 
I have opened a PR. Would like to get anyone's feedback on that. Notes: https://github.com/sveltejs/kit/pull/8922 https://kit.svelte.dev/docs/packaging#anatomy-of-a-package-json-exports
If you are consirned about `{@html ...}` you can remove it from the whole svelte-markdown manually by including custom html renderer: ```svelte export let text; {text} ``` This will remove...
Your styles get removed by svelte as "unused". You should see the warning when compiling the project. As above was said already, use `:global`
related I guess #53 so now we have ability but we need to precompile ourselfe with marked lexer
This config helped me. (using linter only for yamllint) ```json "linter.linters": { "brakeman": { "enabled": false, }, "credo": { "enabled": false, }, "dart": { "enabled": false, }, "eslint": { "enabled":...