Skip to content
Snippets Groups Projects
Commit c77863b0 authored by cylon-x's avatar cylon-x :robot:
Browse files

automatic formatting changes

parent 7b8c6095
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,11 @@ index_md = replace(index_md, "<!--insert_ack_logos-->\n" => ack_logos)
open(f -> write(f, index_md), joinpath(@__DIR__, "src", "index.md"), "w")
# copy the contribution guide
cp(joinpath("..", ".github", "CONTRIBUTING.md"), joinpath("src", "howToContribute.md"), force=true)
cp(
joinpath("..", ".github", "CONTRIBUTING.md"),
joinpath("src", "howToContribute.md"),
force = true,
)
# build the docs
makedocs(
......@@ -81,10 +85,11 @@ function replace_in_doc(filename, replacement)
open(f -> write(f, contents), joinpath(@__DIR__, "build", filename), "w")
end
replace_in_doc("index.html",
"blob/master/docs/src/index.md" => "")
replace_in_doc(joinpath("howToContribute", "index.html"),
"blob/master/docs/src/howToContribute.md" => "")
replace_in_doc("index.html", "blob/master/docs/src/index.md" => "")
replace_in_doc(
joinpath("howToContribute", "index.html"),
"blob/master/docs/src/howToContribute.md" => "",
)
deploydocs(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment