We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0ce3f commit 19b76b5Copy full SHA for 19b76b5
src/cluecode/copyrights.py
@@ -1810,6 +1810,9 @@ def build_detection_from_node(
1810
r'[A-Z][a-z]+[\.,]?'
1811
r')$', 'NNP'),
1812
1813
+ # Matches a capitalized word with a dot (Like Frankie.Chu).
1814
+ (r'^[A-Z][a-zA-Z]*\.[a-zA-Z]+$', 'NNP'),
1815
+
1816
# cmmunications
1817
(r'communications', 'NNP'),
1818
@@ -3495,6 +3498,9 @@ def build_detection_from_node(
3495
3498
# developed by Atkinson, et al.
3496
3499
AUTHOR: {<AUTH> <NNP>+ <CC> <AUTHDOT> } #Atkinson, et al.
3497
3500
3501
+ # Author:Frankie.Chu
3502
+ AUTHOR: {<AUTH> <NNP>}
3503
3504
3505
#######################################
3506
# Mixed AUTHOR and COPYRIGHT
0 commit comments