I did some changes to the “minimal” theme, like switching to Bulma instead of using Bootstrap.
But now, when I look at the posts, not everything work as expected.
Specifically, when I click a post, I can’t see the markdown heading being bigger (to me it looks like a standard <p></p> paragraph).
Or when I space out between a sentence and an other, it does not reflect in the final post.
I looked at list-item, lists, all the layout pages, but nothing seems problematic to me.
Bulma and Bootstrap use different classes. Did you go through your templates and replace everything as appropriate? Also, at least the first time I used it, Bulma did not have any javascript included by default like Bootstrap does.
Yes, I did, that’s why I can’t understand why it doesn’t work.
The javascript file is just there because it is used by default by the “minimal” theme, but I have removed the connections between javascript and the other files.
If I write down a sentence and then leave a blank line and then on a third line I write something I should see a blank line between the first and the third one:
Hi how you doin
Alright fine
Instead what happens:
Hi how you doin
Alright fine
No matter how many blank lines I sneak between two sentences.
The blank lines are not considered at all.
Markdown processors do that. Try two spaces on the blank line.
I’m not convinced. I said I can add as many lines as I want but no blank line will be there.
And I don’t think it’s something linked to the processor. If I use the original “minimal” theme that doesn’t happen.
I’ve tried what you suggest, but it just prints out §§ in that line where it is inserted as any other letter:
hi how you doin
§§
alright fine
prints out as →
hi how you doin §§ alright fine
both in the original “minimal” theme and the one that I have made.