diff --git a/src/Fable.Python.fsproj b/src/Fable.Python.fsproj index a1e41a5..9d7b21d 100644 --- a/src/Fable.Python.fsproj +++ b/src/Fable.Python.fsproj @@ -12,6 +12,7 @@ + diff --git a/src/stdlib/Html.fs b/src/stdlib/Html.fs new file mode 100644 index 0000000..9d34cb9 --- /dev/null +++ b/src/stdlib/Html.fs @@ -0,0 +1,14 @@ +module Fable.Python.Html + +open Fable.Core + +// fsharplint:disable MemberNames + +type IExports = + abstract escape : string -> string + abstract escape : string * bool -> string + abstract unescape : string -> string + + /// Miscellaneous operating system interfaces +[] +let html: IExports = nativeOnly