This week I tried to add an older command line only project to my portfolio. The first project I picked was my Hashmap project. I thought about building out some sort of gui display but decided agaist it since it's not really a visual project. Insead I linked the GitHub repository to a repelit and went to embed that. I ran into a small bug, by default Django wants to display HTML as plain text is it's pulling it from the data base.
In researching the problem I discovered 2 things. First adding a |safe to my template like so {{ Object.content|safe }}
allows it to display CSS and HTML code. Secound if I'm going to allow HTML in post and projects, adding a rich text editor to format the content is pretty easy.
It looks like TinyMCE supports spell check if you add a dictionary. I'll try to add that in another sitting.