Skip to content

Commit

Permalink
minor docs related changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eben60 committed Dec 7, 2024
1 parent 5e837c5 commit d149500
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.6'
version: '1'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ makedocs(
authors = "Eben60",
sitename = "Mendeleev.jl",
pages = Any["Home" => "index.md", "Elements Data Fields" => "elements_data_fields.md", "Types" => "types.md", "Changelog" => "changelog.md"],
checkdocs = :exports,
warnonly = [:missing_docs],
# strict = true,
# clean = true,
Expand Down
6 changes: 5 additions & 1 deletion src/Mendeleev.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
"""
Mendeleev
Mendeleev v$(pkgversion(Mendeleev))
Package package for accessing chemical elements data. Exports them as `chem_elements`,
enabling access by name, symbol, or atomic number.
Docs under https://eben60.github.io/Mendeleev.jl/
$(isnothing(get(ENV, "CI", nothing)) ? ("\n" * "Package local path: " * pathof(Mendeleev)) : "")
"""
module Mendeleev
using Unitful, UnitfulAtomic
Expand Down

0 comments on commit d149500

Please sign in to comment.