From e0d2f35b1c02f622aacd962366f3a82bfc0f33e5 Mon Sep 17 00:00:00 2001 From: alexpantyukhin Date: Tue, 26 Oct 2021 21:59:50 +0400 Subject: [PATCH] add init html --- src/Fable.Python.fsproj | 1 + src/stdlib/Html.fs | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 src/stdlib/Html.fs 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