From b00a8808246f0f479785ebacb3112e45181f7b0b Mon Sep 17 00:00:00 2001 From: Simon Exner <43469235+0815Creeper@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:02:58 +0200 Subject: [PATCH] make.jl formatting issue fixed --- docs/make.jl | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 4061c555..6b1e4742 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -4,35 +4,35 @@ # import Pkg; -Pkg.develop(path = joinpath(@__DIR__, "../../FMI.jl")); +Pkg.develop(path=joinpath(@__DIR__, "../../FMI.jl")); using Documenter, Plots, JLD2, DataFrames, CSV, MAT, FMI, FMIBase, FMIImport, FMICore using Documenter: GitHubActions example_pages = [ - "Overview" => "examples/overview.md" - "Simulate" => "examples/simulate.md" - "Parameterize" => "examples/parameterize.md" - "Inputs" => "examples/inputs.md" - "Multiple instances" => "examples/multiple_instances.md" - "Modelica conference 2021" => "examples/modelica_conference_2021.md" - "Manipulation" => "examples/manipulation.md" - "Multithreading" => "examples/multithreading.md" - "Multiprocessing" => "examples/multiprocessing.md" - ] + "Overview" => "examples/overview.md" + "Simulate" => "examples/simulate.md" + "Parameterize" => "examples/parameterize.md" + "Inputs" => "examples/inputs.md" + "Multiple instances" => "examples/multiple_instances.md" + "Modelica conference 2021" => "examples/modelica_conference_2021.md" + "Manipulation" => "examples/manipulation.md" + "Multithreading" => "examples/multithreading.md" + "Multiprocessing" => "examples/multiprocessing.md" +] makedocs( - sitename = "FMI.jl", - format = Documenter.HTML( - collapselevel = 1, - sidebar_sitename = false, - edit_link = nothing, - size_threshold = 512000, - size_threshold_ignore = ["deprecated.md"], + sitename="FMI.jl", + format=Documenter.HTML( + collapselevel=1, + sidebar_sitename=false, + edit_link=nothing, + size_threshold=512000, + size_threshold_ignore=["deprecated.md"], ), - modules = [FMI, FMIImport, FMICore, FMIBase], - checkdocs = :exports, - linkcheck = true, - pages = Any[ + modules=[FMI, FMIImport, FMICore, FMIBase], + checkdocs=:exports, + linkcheck=true, + pages=Any[ "Introduction" => "index.md" "Features" => "features.md" "FAQ" => "faq.md" @@ -84,7 +84,7 @@ function deployConfig() end deploydocs( - repo = "github.com/ThummeTo/FMI.jl.git", - devbranch = "main", - deploy_config = deployConfig(), + repo="github.com/ThummeTo/FMI.jl.git", + devbranch="main", + deploy_config=deployConfig(), )