This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
youys
/
DocNet
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
14
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Fix: trailing whitespace on alert type caused regex mismatch
tags/0.7.2
Frans Bouma
10 years ago
parent
17469e7d52
commit
c7db8006d7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/MarkdownSharp.cs
+ 1
- 1
src/MarkdownSharp.cs
View File
@@ -1379,7 +1379,7 @@ namespace Docnet
}
private static Regex _alertBlock = new Regex(@"(@alert) (\S+)\
n
([\s\S]+?)\s(@end)", RegexOptions.Compiled);
private static Regex _alertBlock = new Regex(@"(@alert) (\S+)\
s*
([\s\S]+?)\s(@end)", RegexOptions.Compiled);
private string DoAlertBlocks(string text)
{
Write
Preview
Loading…
Cancel
Save