mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 20:18:43 +00:00
13 lines
330 B
Forth
13 lines
330 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open Fantomas.FCS.Xml
|
|
open Fantomas.FCS.Text.Range
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal PreXmlDoc =
|
|
let create (s : string) : PreXmlDoc =
|
|
PreXmlDoc.Create ([| " " + s |], range0)
|
|
|
|
let create' (s : string seq) : PreXmlDoc =
|
|
PreXmlDoc.Create (Array.ofSeq s, range0)
|