[icon ] blenderdumbass . org


Markdown Text Formatting


This website is using a modified version of markdown for posts and comments. Some regular features are not supported, while other features are added.

Markdown in useful to add style to the text.
For example here is a text that I will write in the editor:

# Header

Some normal text. *Some italic text.* More normal text.

## Second level header

Text with some **bold characters**. A [link to wikipedia.](https://wikipedia.org)

A separation line:

___________________________

And an image:

![Which even has an alt text](/icon/image)

or I can even nest an image into a link:

[![icon](/icon/link)](https://wikipedia.org)

> And of course a quote.




And this is what this text will look like in the page:

Header


Some normal text. Some italic text. More normal text.


Second level header


Text with some bold characters. A link to wikipedia.

A separation line:



And an image:

[embedded image]


or I can even nest an image into a link:



And of course a quote.


Comments


Additionally it supports other things as well. Such as quoting a user:

@blenderdumbass



Adding a @ symbol in front of a username will make a link to the user. And writing it in a comment will also notify the user.

c:0



Comments have codes to them such as c:0 or c:1 or other. You can make a blank line with a reference to a comment like this.

Source code


To do little code snippets you can use the ` on either side. Like this:

To do something to may want to run the `HelloWorld()` function.



Which will look like this:



To do something to may want to run the HelloWorld() function.



For multi-line code you can use ``` on either side. Make sure they are the only thing in the line:

Here is some code in python:
```
def HelloWorld():
    print("Hello World")
HelloWorld()
```



It will render like this:



Here is some code in python:
def HelloWorld():
    print("Hello World")
HelloWorld()




For more complex codes like when you want to show the ` character itself, please use the HTML escape codes.

Media Files


You can link a video or an audio file like this:

Big Buck Bunny:
![video](https://upload.wikimedia.org/wikipedia/commons/transcoded/c/c0/Big_Buck_Bunny_4K.webm/Big_Buck_Bunny_4K.webm.720p.vp9.webm)

The Free Software Song:
![audio](https://www.gnu.org/music/FreeSWSong.ogg)

Moria's Race:
![peertube-video](https://peer.madiator.cloud/w/vmPmME5XPWNc8uXSMe1xCk)




Which will look like this:



Big Buck Bunny:


The Free Software Song:


Moria's Race:


Icon Links


For user profiles it is useful to link many different social medias. And for that you can use icon links. Like so:

![mastodon](http://joinmastodon.org) ![peertube](https://joinpeertube.org)




Which will look like this:







This uses the full list of icons that come with the software. The full list is available to see here.

Movie Scripts and .fountain


Markdown is good for almost everything. But certain types of texts ( primarily movie scripts ) are not supported by regular markdown. There is a similar format to markdown called fountain that tries to be the markdown of movie-scripts. BDServer supports some of its features.

To start a script section use either INT. EXT. or ___script___.
To end a script section use a separator ___.
To do dialog enter the name of the character speaking all in caps like JOHN and then from the next line type the dialogue.

Like this:

EXT. SOME PLACE - DAY

John and Michael are talking to one another.

JOHN
Hello there

MICHAEL
Hello, John.

___

That is no longer script.




It will look like this:


EXT. SOME PLACE - DAY

John and Michael are talking to one another.

JOHN

Hello there


MICHAEL

Hello, John.




That is no longer script.



[icon unlock]