Skip to content

Instantly share code, notes, and snippets.

@tagr
tagr / xd2md.cs
Created June 26, 2018 23:50 — forked from formix/xd2md.cs
Generates Markdown From VisualSturio XML documentation files
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Linq;
namespace Formix.Utils
{
class Program
/**
* Parse hash bang parameters from a URL as key value object.
*
* For repeated parameters the last parameter is effective.
*
* If = syntax is not used the value is set to null.
*
* #!x+y:3 -> { x:null, y:3 }
*
* @param options