• 433 Posts
  • 2.06K Comments
Joined 3 years ago
cake
Cake day: June 24th, 2023

help-circle













  • Compared to English: yes, definitely. English doesn’t really have case markings outside of pronouns, nor adjectival declensions, not even grammatical gender.

    Compared to Mandarin: probably German is easier, I agree on that.

    Compared to Japanese: I don’t know enough about Japanese to know for sure, but by the standards by which it has “three writing systems”, the Latin (and Cyrillic and Greek) alphabet also has two (uppercase and lowercase). :P






  • If you mean here on Lemmy or other markdown based sites, I think the reason is that it would become incoherent in terms of the HTML it generates.

    HTML is supposed to be a format that describes meaning, not presentation. The meaning is that Lemmy comments consist of paragraphs (p elements) like any piece of text does. The way to start a new paragraph is to type two newlines in a row.

    On occasion text isn’t divided into paragraphs, like your example of poetry. The way to represent that meaning in HTML is a br element. You already described how to generate that in Markdown. But that is a rare special case. Makes sense that it requires special syntax so people don’t do it accidentally.

    Old forum software like phpBB or SMF worked the way you imagine. If I am not mistaken they translated a newline in the BBCode to an HTML br element, unfriendly to screen readers and automated technologies in the ordinary case where text was divided into paragraphs.