Jason Evans
2021-11-12 07:30:48 UTC
Some of you may have seen the HTML spammer in news.admin.misc and a few
other places. Someone else recently asked on Reddit why HTML isn't used
more on Usenet. I think the basic answer is because so many people still
use terminal-based newsreaders like SLRN and NN and HTML just makes
everything harder to read.
I think there could be a middle ground. Take something like gemtext which
is a very limited subset of the Markdown markup language. Gemtext has
only 5 different operations that are used for formatting:
Links:
=> https://blog.theuse.net My Blog
Headings:
# Heading
## Sub-heading
### Sub-sub-heading
Lists:
* Item 1
* Item 2
* Item 3
```
#!/bin/bash
echo "this is a bash script"
```
Right now there are no newsreaders that handle this kind of markup but if
there were, users who do not use that newsreader would not be distracted
by it being in an article that they were reading because they don't
interfere with normal reading the way HTML interferes.
Just throwing this out there for discussion.
other places. Someone else recently asked on Reddit why HTML isn't used
more on Usenet. I think the basic answer is because so many people still
use terminal-based newsreaders like SLRN and NN and HTML just makes
everything harder to read.
I think there could be a middle ground. Take something like gemtext which
is a very limited subset of the Markdown markup language. Gemtext has
only 5 different operations that are used for formatting:
Links:
=> https://blog.theuse.net My Blog
Headings:
# Heading
## Sub-heading
### Sub-sub-heading
Lists:
* Item 1
* Item 2
* Item 3
That's what she said
Preformatted text/Source code:```
#!/bin/bash
echo "this is a bash script"
```
Right now there are no newsreaders that handle this kind of markup but if
there were, users who do not use that newsreader would not be distracted
by it being in an article that they were reading because they don't
interfere with normal reading the way HTML interferes.
Just throwing this out there for discussion.