We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
 这种 markdown 语法哈,用相对路径,你别是用的 img-src

Sorry, something went wrong.
可以下载源码,在 ImageHandler.cs 中增加一条正则
private const string MatchHtmlRule = "<img src="(.*?)"";
public List Process(string content) { var result = new List();
var matchResult = Regex.Matches(content, MatchRule, RegexOptions.IgnoreCase | RegexOptions.RightToLeft); foreach (Match match in matchResult) result.Add(match.Groups[1].Value); matchResult = Regex.Matches(content, MatchHtmlRule, RegexOptions.IgnoreCase); foreach (Match match in matchResult) result.Add(match.Groups[1].Value); return result; }
自己编译生成一个可执行文件,本地部署就好啦
No branches or pull requests
The text was updated successfully, but these errors were encountered: