We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7883a commit 76d1467Copy full SHA for 76d1467
runner/PMS.py
@@ -96,6 +96,16 @@ async def Write_code_Buffer(websocket, path):
96
r"File_name :",
97
r" File_name : ",
98
99
+
100
+ # file_nane cases
101
+ r"File_nane: ",
102
+ r"File_nane:",
103
+ r" File_nane: ",
104
+ r" File_nane :",
105
106
+ r"#File_name: ",
107
+ r"#File_name:",
108
+ r"# File_name: ",
109
]
110
Project_name_cases = [
111
r"Project: ",
@@ -105,6 +115,9 @@ async def Write_code_Buffer(websocket, path):
115
r"Project :",
116
r" Project : ",
117
118
+ r"#Project: ",
119
+ r"#Project:",
120
+ r"# Project: ",
121
122
# check if the first line is a comment
123
if any(re.match(pattern, first_line) for pattern in comment_patterns):
0 commit comments