FSharp.Formatting
FSharp.Formatting copied to clipboard
F# tools for generating documentation (Markdown processor and F# code formatter)
I'm using the ProjectScaffold api docs generation method and have the following type in c#: ``` /// /// docs for the type /// public class SomeType { /// /// Id...
I am currently trying to find a way to insert a label or something above the code snippet that contains the language name to make it clearer in what language...
Hi, while the Markdown HTML Formatter formats codeblocks as `...`, the Literate module uses `%s` (lang attribute instead of class.) This makes it very inconvenient to use alternative formatting tools...
In the [Evaluation](http://tpetricek.github.io/FSharp.Formatting/evaluation.html) section there is a mention of a "raw" command. But this is not working. We should be able to write something like this. ``` (** (*** raw...
Continuation of https://github.com/matthid/Yaaf.FSharp.Scripting/issues/5.
I suggest commands `(** include-toc:1 **)`, `(** include-toc:2 **)`, and `(** include-toc:3 **)` to generate toc's with heading 1's, heading 1's and 2's, and heading's 1's, 2',s, and 3's, respectively
CSS tooltips would make snippets generated by FSharp.Formatting usable in contexts where js execution is restricted. I think they would also simplify and cut down the size of the generated...
The markdown parser gets asterisk-inside-codeblock-inside-list wrong. For instance, try this markdown code `````` * Alpha ``` * Beta ``` Gamma `````` On both GitHub and CommonMark, it's rendered as a...
Given this markdown ``` 1. List item 1. Subone Paragraph 7. SubRestart 5. Another list item ``` then GitHub and commonmark [render it](http://spec.commonmark.org/dingus/?text=1.%20%20List%20item%0A%0A%20%20%20%201.%20Subone%0A%0A%20%20%20%20Paragraph%0A%0A%20%20%20%207.%20SubRestart%0A%0A5.%20%20Another%20list%20item) where the first item "List item" has...
I've just started using Fsharp.formatting to process markdown files defining a set of tutorial worksheets for a new F# lecture course at my university next year. It is great having...