markdown

General Discussion
Forum rules
You must be 18 or older to join.
Post Reply
User avatar
kohlrak
Site Admin
Posts: 135
Joined: Wed Nov 27, 2024 7:07 am
Location: Here
Contact:

markdown

Post 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

Post Reply