This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
temple/lib/mix/tasks/update_mdn_docs.ex
2019-05-10 15:56:09 -04:00

29 lines
717 B
Elixir

defmodule Mix.Tasks.UpdateMdnDocs do
use Mix.Task
@baseurl "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/"
@params "?summary&raw"
@shortdoc "Update the MDN documentation"
def run(_) do
(Dsl.Tags.nonvoid_elements() ++ Dsl.Tags.void_elements())
|> Enum.each(fn el ->
el = to_string(el)
page =
if Enum.any?(["h1", "h2", "h3", "h4", "h5", "h6"], & &1 == el) do
"Heading_Elements"
else
el
end
{doc, 0} = System.cmd("curl", [@baseurl <> page <> @params])
File.mkdir_p!("./tmp/docs/")
path = "./tmp/docs/" <> el <> ".txt"
doc = HtmlSanitizeEx.strip_tags(doc)
File.write!(path, doc)
end)
end
end