diff --git a/HOWTO%3A-setup-your-own-Icecast-server.md b/HOWTO%3A-setup-your-own-Icecast-server.md
index 9feb6fd..2461747 100644
--- a/HOWTO%3A-setup-your-own-Icecast-server.md
+++ b/HOWTO%3A-setup-your-own-Icecast-server.md
@@ -61,7 +61,9 @@ Now you need to get some audio to the server. You need software that will encode
What software should you use? It depends on the operating system, but many people recommend the *Broadcast Using This Tool (B.U.T.T.)* for Mac & Win. You can also search for Ladiocast in Apple Store or Mixxx DJ software to stream to an Icecast. On linux I use *DarkIce* that also has a GUI called *DarkSnow*. It's also possible to use something like ffmpeg on the commandline:
-`ffmpeg -f jack -i ffmpeg_in -c:a flac -f ogg -content_type 'application/ogg' icecast://source:hackme12@134.209.249.117:8000/mystream.ogg`
+`
+ffmpeg -f jack -i ffmpeg_in -c:a flac -f ogg -content_type 'application/ogg' icecast://source:hackme12@134.209.249.117:8000/mystream.ogg
+`
More apps are on [icecast.org page](https://icecast.org/apps/).
@@ -71,7 +73,7 @@ After you configured the client and 'seemingly' started streaming you can check
Now, the direct stream url is http://IP.OF.THE.SERVER:8000/mountpoint.ogg - whatever you have chosen for mountpoint. You can embed this address in another page (like on a blog) with some simple html tags for audio to have a player ready:
-```
+```html