FSharp.Formatting
FSharp.Formatting copied to clipboard
F# tools for generating documentation (Markdown processor and F# code formatter)
I'm looking into using the Markdown parser for a project, but noticed that the range information is optional for markdown elements. Glancing through the code I can see [only 1...
Hello, I'm using FSharp.Formatting to create a static site using literate scripts. I've created a `_template.html` to selectively replace some of the substitution parameters with hard-coded values (like repository URL,...
Currently, they are exposed using an anonymous record, this means that I can't easily pass it to a function to manipulate them.  My function is defined as: ```fs let...
New lines seem to be omitted from XML docs in the created API documentation. See below screenshot for a comparison of the input (left) and the generated output (right) This...
**Description:** My code: ```fs let returnInfo = instanceMember.ReturnInfo.ReturnType |> Option.map (fun (fsharpType, _) -> Common.renderParameterType true fsharpType |> TextNode.ToHtml ) ``` See how the member with a `setter` doesn't have...
I was trying to add content to HTML output that I do not want in IPYNB and FSX output. #if HTML is not working. See example below. I might be...
The markdown output for API docs is messy - there's lots of embedded HTML and I'm not sure it renders properly This branch has the start of an attempt to...
There is an attempt to standardized Markdown at [CommonMark](http://commonmark.org/) which I think it's a good idea. I tried `FSharp.Formatting` with the [sample](http://johnmacfarlane.net/babelmark2/?text=%23+Hello+there%0A%0AThis+is+a+paragraph.%0A%0A-+one%0A-+two%0A-+three%0A-+four%0A%0A1.+pirate%0A2.+ninja%0A3.+zombie) that Jeff Atwood gives, and the output html...
Hi, I'm trying the Deedle tutorial and noticed the following:  I think it's a good idea to have these inline output messages, but it's "really hard" :hamster: to copy...