We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdbb66 commit e0d2f35Copy full SHA for e0d2f35
src/Fable.Python.fsproj
@@ -12,6 +12,7 @@
12
<Compile Include="stdlib/Ast.fs" />
13
<Compile Include="stdlib/Builtins.fs" />
14
<Compile Include="stdlib/Json.fs" />
15
+ <Compile Include="stdlib/Html.fs" />
16
<Compile Include="stdlib/Math.fs" />
17
<Compile Include="stdlib/Os.fs" />
18
<Compile Include="stdlib/Queue.fs" />
src/stdlib/Html.fs
@@ -0,0 +1,14 @@
1
+module Fable.Python.Html
2
+
3
+open Fable.Core
4
5
+// fsharplint:disable MemberNames
6
7
+type IExports =
8
+ abstract escape : string -> string
9
+ abstract escape : string * bool -> string
10
+ abstract unescape : string -> string
11
+ /// Miscellaneous operating system interfaces
+[<ImportAll("html")>]
+let html: IExports = nativeOnly
0 commit comments