Skip to content
New issue

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

博主,提取0个是什么情况,文档里是有本地图片的呀 #40

Open
dxm620 opened this issue Feb 23, 2023 · 2 comments
Open

Comments

@dxm620
Copy link

dxm620 commented Feb 23, 2023

image

@stulzq
Copy link
Owner

stulzq commented Feb 23, 2023

![](assets/668104-20201127164728833-2082113229.png) 这种 markdown 语法哈,用相对路径,你别是用的 img-src

@qq317423892
Copy link

可以下载源码,在 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;
    }

自己编译生成一个可执行文件,本地部署就好啦

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants