Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/FountainSharp.Parse/FountainDocument.fs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type FountainDocument(blocks : FountainBlocks, ?text : string) =
/// inline HTML (etc.) will be stored using the specified string.
static let parse(text : string, ctx:ParsingContext) =
let text = properNewLines text
let lines = text.Split([|Environment.NewLine|], StringSplitOptions.None) |> List.ofArray
let lines = text.Split([|ctx.NewLine|], StringSplitOptions.None) |> List.ofArray

let blocks =
lines
Expand Down