markdown
Posted: Fri Aug 14, 2026 2:18 am
Markdown added. Notable features not previously present that were previously sticking points:
Code blocks, discord style
{$L_CODE}{$L_COLON} {$L_SELECT_ALL_CODE}
```C
#include <stdiio.h>
int main(){
printf("Hello world!\n");
return 0;
}
```
(note, the plugin isn't perfect, the closing backticks are supposed to be on their own line)
Result:
{$L_CODE}{$L_COLON} {$L_SELECT_ALL_CODE}
#include <stdiio.h>
int main(){
printf("Hello world!\n");
return 0;
}Quote blocks, email style
{$L_CODE}{$L_COLON} {$L_SELECT_ALL_CODE}
Text
>quoted text
>>quoted-quoted textText
quoted text
quoted-quoted text