Neko

Kohlrak Land Forums • markdown
Page 1 of 1

markdown

Posted: Fri Aug 14, 2026 2:18 am
by kohlrak

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 text

Text

quoted text

quoted-quoted text