-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
moved docs from FMIImport&Core into FMI.jl #204
Conversation
using Documenter: GitHubActions | ||
|
||
makedocs(sitename="FMI.jl", | ||
format = Documenter.HTML( | ||
collapselevel = 1, | ||
sidebar_sitename = false, | ||
edit_link = nothing | ||
edit_link = nothing, | ||
size_threshold_ignore = ["library.md","deprecated.md","fmi2_lowlevel_librarys.md","fmi3_lowlevel_librarys.md"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
necessary, will be removed as soon as library.md and fmiX_lowlevel_librarys.md are spilt just as fmi_lowlevel_library_types, _functions, _constants
modules = [FMI, FMIImport, FMICore], | ||
checkdocs=:exports, | ||
linkcheck=true, | ||
linkcheck_ignore=["https://thummeto.github.io/FMI.jl/dev/examples/inputs/", "https://github.com/ThummeTo/FMICore.jl/blob/main/src/FMI2_c.jl#L718"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
examples need work, old links in there will be ignored until then ...
"Related Publication" => "related.md" | ||
"Contents" => "contents.md" | ||
] | ||
) | ||
hide("Deprecated" => "deprecated.md") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all exported funtions need to be documented. The coresponding file will be hidden (might be removable by removing docstrings from deprececated functions)
@@ -20,7 +20,7 @@ jobs: | |||
matrix: | |||
os: [windows-latest] # ubuntu-latest | |||
file-name: [manipulation, modelica_conference_2021, multiple_instances, multiprocessing, multithreading, parameterize, simulate, parameter_optimization] | |||
julia-version: ['1.9'] | |||
julia-version: ['1.8'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed, that examples were broken (no svgs where saved)
No description provided.