This only adds newline characters to make the existing text blocks act like
"blockquote" or "code block" syntax in Markdown, asciidoc, and others.
This was accomplished by manually reviewing the output of this script:
```bash
for f in *.txt; do
cat $f | python -c "import sys,re;print(re.sub(r'(\n {0,3}[^ \n][^\n]*\n)( {4,}[^\n]*)', r'\1\n\2', sys.stdin.read()))" > ${f}.tmp
mv ${f}.tmp $f
done
```
* Rename "whitelist" to "offer-list" for 32699.
* Add "descriptor" for 24839.
* Allow multiple values for the 24839 transition to signed offers
in descriptors.
Part of 32699 and 24839.
The clear standard is trailing "." after each numeric section. This fixes
the small handful of outliers. This makes it easy to convert these headers
to common markup formats, for example:
http://hyperpolyglot.org/lightweight-markup
Incorporates changes based on atagar's review on #24742.
Documents the contents of the manually modified initial fallback
version 2.0.0 list, and future generated lists.
Documents the format changes in the children of #22271.
Closes#24742.