You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That would make some sense. That change would happen many times, so we probably need to do a find & replace. I'll rope in Flavia before we start doing that.
Italicize 20.. CWE Top 25 and 20.. OWASP Top 10 titles.
Note that the CWE Top 25 title sometimes includes
"Most Dangerous Software Errors". In one case it was already
italicized, so we revert the doubled asterisks, and
we also fix a missing space after an "and" before italicizing it.
This is the result of:
~~~~sh
cat secure_software_development_fundamentals.md | \
sed -E 's/(20.. CWE Top 25( Most Dangerous Software Errors)?)/\*\1\*/g' | \
sed -E \
's/\*(\*20.. CWE Top 25( Most Dangerous Software Errors)?\*)\*/\1/g' | \
sed -E 's/(20.. OWASP Top 10)/\*\1\*/g' | \
sed -E 's/ and\*/ and \*/g' > ,1
mv ,1 secure_software_development_fundamentals.md
~~~~
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
There are a lot of "2021 CWE Tip 25" and "2019 CWE Top 25". It gets hard to follow when they are not italicized because the sentences are so long.
All of the CWE and OWASP lists should be in italics IMO.
The text was updated successfully, but these errors were encountered: