My friend made a website with Google sites, and I showed him Jekyll and Markdown which he decided he liked a lot better, so I'm porting his website to a Github Pages site.
On one page he had these three columns which I wanted to recreate in Markdown. Page I'm trying to recreate
I saw this stackoverflow answer which said that I could get Markdown inside of a div if I instead used a <span> with display:block;
style.
I tried this setup:
<span style="display:block; float:left;">**Left Column Title
Thing 1
Thing 2
Thing 3
</span>
<span style="display:block; float:right;">**Right column title**
Thing 4
Thing 5
Thing 6
</span>
But instead of the expected result of
Left Column Title Right Column Title
Thing 1 Thing 4
Thing 2 Thing 5
Thing 3 Thing 6
I get this. The formatting does not work at all. The weirdest part is that you can see the closing </span> but not the opening <span>