Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Sep 7, 2024
1 parent 204f9ab commit 8969e09
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion content/pages/email_lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In `lists.apache.org` you can browse, search for, and read emails on mailing lis
- Without logging in, you can access email in public ASF mailing lists.
- If you have logged in:
- if you are an ASF Member, you can access all ASF mailing lists.
- if you are not an ASF Member but are on the PMC of a project, you can accesss, in addition to the public lists, the private lists of that project.
- if you are not an ASF Member but are on the PMC of a project, you can access, in addition to the public lists, the private lists of that project.

If you have logged in, and depending on your status as noted above, you can respond to email threads and create new messages in the email list you are currently viewing. The user interface does not have controls for these actions; instead, there are shortcut keys:

Expand Down
14 changes: 14 additions & 0 deletions scan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from pathlib import Path
import re
pattern = re.compile("^\w+:")

for p in Path('content').glob('**/*.md'):
blanks = 0
for line in open(p).readlines():
if line.isspace():
blanks += 1
if blanks > 2:
break
if blanks > 1 and pattern.match(line):
print(p)
print(line,end='')

0 comments on commit 8969e09

Please sign in to comment.