Last active
September 20, 2015 15:04
-
-
Save foofoodog/1fce92f80a227a48d51a to your computer and use it in GitHub Desktop.
LINQPad to parse specific github README.md and generate reddit markdown TOC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var readme = "https://github.com/cyberkni/FolgertechManuals/blob/master/2020i3/README.md"; | |
var includes = new[] { "id=\"user-content-", "href=\"#" }; | |
var excludes = new[] { "<article" }; | |
// input | |
IEnumerable<XElement> elements; | |
using (var client = new WebClient()) | |
{ | |
elements = from line in client.DownloadString(readme).Split('\n') | |
where | |
includes.All(include => line.Contains(include)) | |
&& excludes.All(exclude => !line.Contains(exclude)) | |
select XElement.Parse(line); | |
} | |
// output | |
var template = "[{0}]({1}{2})\n"; | |
var links = from element in elements | |
let text = element.Value | |
let href = element.Descendants("a").First().Attribute("href").Value | |
let markdown = string.Format(template, text, readme, href) | |
let link = new Hyperlinq(new Uri(readme + href).ToString(), text) | |
select new { markdown, link }; | |
links.Dump(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment