Antworten zu #aktb7qluroat von @aelaraji
It should be a tab (I saw \t on twtd source, but sure find odd the space difference. The code, on twtd goes like:
line := created.Format(time.RFC3339) + "\t" + strings.ReplaceAll(text, "\n", "
") + "\n"
Hopefully @prologic chimes in.
This is just browser rendering
Antworten zu #zx234af7tc3b von @lyse
Interesting! I figure that’s why so many people prefer spaces to tabs when coding. A space comes across as more “predictable” than a TAB.
Antworten zu #lbwl3o7l26j5 von @david
@david Exactly. Spaces are fixed, tabs always break the layout when the tab sizes are different.
@lyse That explains a lot! Thank you.