forked from JuliaDocs/Documenter.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
t push origin masterMerge branch 'JuliaDocs-master'
* JuliaDocs-master: (138 commits) Add example admonition css to example build (JuliaDocs#1284) Pass non-standard admonition categories on in HTML output (JuliaDocs#1280) Suggest using the `aligned` environment (JuliaDocs#1275) Update DiffEq docs link (JuliaDocs#1274) Make Deps.pip a closure again (JuliaDocs#1240) Recommend Julia 1.4 in the manual (JuliaDocs#1272) Add note about doctests in docstrings (JuliaDocs#1265) Fix minted/lstlistings escaping (JuliaDocs#1269) Changelog for 0.24.7 (JuliaDocs#1266) Test with Julia 1.4 instead of 1.3 on CI (JuliaDocs#1268) Fix doctest testing on nightly (JuliaDocs#1267) remove "only" from search stop word filter (JuliaDocs#1264) Reorganize some Sass variables to make theming easier (JuliaDocs#1258) Fix outdated links in the manual (JuliaDocs#1255) Fix LaTeX tests for tags (JuliaDocs#1256) Install TagBot as a GitHub Action (JuliaDocs#1237) use Julia 1.3 for .travis hosting example (JuliaDocs#1235) Set version to 0.24.5 (JuliaDocs#1233) Support REPL softscope for Julia 1.5. (JuliaDocs#1232) Discourage use of matrix: in Travis conf (JuliaDocs#1231) ...
- Loading branch information
Showing
210 changed files
with
29,094 additions
and
2,288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: https://numfocus.org/donate-to-julia |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: TagBot | ||
on: | ||
schedule: | ||
- cron: 0 * * * * | ||
jobs: | ||
TagBot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Linkcheck | ||
|
||
on: | ||
push: | ||
branches: '*' | ||
tags: '*' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: '1.4' | ||
- name: Install dependencies | ||
run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
- name: Build and check documentation | ||
run: julia --color=yes --project=docs/ docs/make.jl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
name = "Documenter" | ||
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
version = "0.22.3" | ||
version = "0.24.7+0.25-DEV" | ||
|
||
[deps] | ||
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433" | ||
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" | ||
|
||
[compat] | ||
julia = "0.7, 1" | ||
DocStringExtensions = "0.4, 0.5, 0.6, 0.7" | ||
JSON = "0.19, 0.20" | ||
DocStringExtensions = "0.4, 0.5, 0.6, 0.7, 0.8" | ||
JSON = "0.19, 0.20, 0.21" | ||
julia = "1" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
DocumenterMarkdown = "997ab1e6-3595-5248-9280-8efb232c3433" | ||
DocumenterTools = "35a29f4d-8980-5a13-9543-d66fff28ecb8" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
|
||
[targets] | ||
test = ["Test"] | ||
test = ["Random", "DocumenterMarkdown", "DocumenterTools"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Non-Julia Assets for `HTMLWriter` | ||
|
||
Themes / CSS: | ||
|
||
* `scss/`: contains the SCSS and Sass files | ||
* `scss/bulma/`: Sass sources of the [Bulma CSS framework](https://bulma.io/), v0.7.5 | ||
(MIT license, [GitHub](https://github.com/jgthms/bulma)) | ||
* `darkly/`: [Darkly Bulmaswatch theme](https://jenil.github.io/bulmaswatch/darkly/) (MIT license, [GitHub](https://github.com/jenil/bulmaswatch/)) | ||
* `documenter/`: Documenter-specific overrides, components etc. | ||
* `documenter.scss` and `darkly.scss`: Documenter default themes | ||
* `themes/`: contains the compiled `.css` files of the default themes |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.