Current section
Files
Jump to
Current section
Files
lib/format/html.ex
defmodule APIDoc.Format.HTML do
@moduledoc ~S"""
"""
def format(document) do
docs = APIDoc.Format.OpenAPI3.format(document)
File.write("./test.yml", docs)
System.cmd("widdershins", [
"./test.yml",
"-o",
"/Users/ianluites/Downloads/test/shins/source/index.html.md"
])
System.cmd("node", ["shins.js", "--inline"], cd: "/Users/ianluites/Downloads/test/shins/")
File.read!("/Users/ianluites/Downloads/test/shins/index.html")
end
end