-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathmarkdown.fsx
181 lines (147 loc) · 6.93 KB
/
markdown.fsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
(**
---
category: Advanced
categoryindex: 3
index: 2
---
*)
(*** condition: prepare ***)
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
#r "FSharp.Formatting.Common.dll"
#r "FSharp.Formatting.Markdown.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Formatting,{{fsdocs-package-version}}"
#endif // FSX
(*** condition: ipynb ***)
#if IPYNB
#r "nuget: FSharp.Formatting,{{fsdocs-package-version}}"
#endif // IPYNB
(**
[](https://mybinder.org/v2/gh/fsprojects/fsharp.formatting/gh-pages?filepath={{fsdocs-source-basename}}.ipynb) 
[]({{root}}/{{fsdocs-source-basename}}.fsx) 
[]({{root}}/{{fsdocs-source-basename}}.ipynb)
Markdown parser
==============================
This page demonstrates how to use `FSharp.Formatting.Markdown` to parse a Markdown
document, process the obtained document representation and
how to turn the code into a nicely formatted HTML.
First, we need to load the assembly and open necessary namespaces:
*)
open FSharp.Formatting.Markdown
open FSharp.Formatting.Common
(**
Parsing documents
-----------------
The F# Markdown parser recognizes the standard [Markdown syntax](http://daringfireball.net/projects/markdown/)
and it is not the aim of this tutorial to fully document it.
The following snippet creates a simple string containing a document
with several elements and then parses it using the `cref:M:FSharp.Formatting.Markdown.Markdown.Parse` method:
*)
let document =
"""
# F# Hello world
Hello world in [F#](http://fsharp.net) looks like this:
printfn "Hello world!"
For more see [fsharp.org][fsorg].
[fsorg]: http://fsharp.org "The F# organization." """
let parsed = Markdown.Parse(document)
(**
The sample document consists of a first-level heading (written using
one of the two alternative styles) followed by a paragraph with a
_direct_ link, code snippet and one more paragraph that includes an
_indirect_ link. The URLs of indirect links are defined by a separate
block as demonstrated on the last line (and they can then be easily used repeatedly
from multiple places in the document).
Working with parsed documents
-----------------------------
The F# Markdown processor does not turn the document directly into HTML.
Instead, it builds a nice F# data structure that we can use to analyze,
transform and process the document. First of all the `cref:P:FSharp.Formatting.Markdown.MarkdownDocument.DefinedLinks` property
returns all indirect link definitions:
*)
parsed.DefinedLinks
// [fsi:val it : IDictionary<string,(string * string option)> =]
// [fsi: dict [("fsorg", ("http://fsharp.org", Some "The F# organization."))]]
(**
The document content can be accessed using the `cref:P:FSharp.Formatting.Markdown.MarkdownDocument.Paragraphs` property that returns
a sequence of paragraphs or other first-level elements (headings, quotes, code snippets, etc.).
The following snippet prints the heading of the document:
*)
// Iterate over all the paragraph elements
for par in parsed.Paragraphs do
match par with
| Heading (size = 1; body = [ Literal (text = text) ]) ->
// Recognize heading that has a simple content
// containing just a literal (no other formatting)
printfn "%s" text
| _ -> ()
(**
You can find more detailed information about the document structure and how to process it
in the book [F# Deep Dives](http://manning.com/petricek2/).
Processing the document recursively
-----------------------------------
The library provides active patterns that can be used to easily process the Markdown
document recursively. The example in this section shows how to extract all links from the
document. To do that, we need to write two recursive functions. One that will process
all paragraph-style elements and one that will process all inline formattings (inside
paragraphs, headings etc.).
To avoid pattern matching on every single kind of span and every single kind of
paragraph, we can use active patterns from the `cref:T:FSharp.Formatting.Markdown.MarkdownPatterns` module. These can be use
to recognize any paragraph or span that can contain child elements:
*)
/// Returns all links in a specified span node
let rec collectSpanLinks span =
seq {
match span with
| DirectLink (link = url) -> yield url
| IndirectLink (key = key) -> yield fst (parsed.DefinedLinks.[key])
| MarkdownPatterns.SpanLeaf _ -> ()
| MarkdownPatterns.SpanNode (_, spans) ->
for s in spans do
yield! collectSpanLinks s
}
/// Returns all links in the specified paragraph node
let rec collectParLinks par =
seq {
match par with
| MarkdownPatterns.ParagraphLeaf _ -> ()
| MarkdownPatterns.ParagraphNested (_, pars) ->
for ps in pars do
for p in ps do
yield! collectParLinks p
| MarkdownPatterns.ParagraphSpans (_, spans) ->
for s in spans do
yield! collectSpanLinks s
}
// Collect links in the entire document
Seq.collect collectParLinks parsed.Paragraphs
// [fsi:val it : seq<string> =]
// [fsi: seq ["http://fsharp.net"; "http://fsharp.org"]]
(**
The `collectSpanLinks` function works on individual span elements that contain inline
formatting (emphasis, strong) and also links. The `DirectLink` node from `cref:T:FSharp.Formatting.Markdown.MarkdownSpan` represents an inline
link like the one pointing to <http://fsharp.net> while `IndirectLink` represents a
link that uses one of the link definitions. The function simply returns the URL associated
with the link.
Some span nodes (like emphasis) can contain other formatting, so we need to recursively
process children. This is done by matching against `MarkdownPatterns.SpanNodes` which is an active
pattern that recognizes any node with children. The library also provides a _function_
named `MarkdownPatterns.SpanNode` that can be used to reconstruct the same node (when you want
to transform document). This is similar to how the `ExprShape` module for working with
F# quotations works.
The function `collectParLinks` processes paragraphs - a paragraph cannot directly be a
link so we just need to process all spans. This time, there are three options.
`ParagraphLeaf` represents a case where the paragraph does not contain any spans
(a code block or, for example, a `<hr>` line); the `ParagraphNested` case is used for paragraphs
that contain other paragraphs (quotation) and `ParagraphSpans` is used for all other
paragraphs that contain normal text - here we call `collectSpanLinks` on all nested spans.
Generating HTML output
----------------------
Finally, the `cref:T:FSharp.Formatting.Markdown.Markdown` type also includes a method `cref:M:FSharp.Formatting.Markdown.Markdown.ToHtml` that can be used
to generate an HTML document from the Markdown input. The following example shows how to call it:
*)
let html = Markdown.ToHtml(parsed)
(**
There are also methods to generate `.fsx`, `.ipynb`, `.md` and `.tex`.
*)