-
Notifications
You must be signed in to change notification settings - Fork 1
📖 [Docs]: Documentation site now builds with Zensical #71
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
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
b243c77
Migrate documentation site to Zensical
MariusStorhaug 541bc6a
Replace broken contribution guide link
MariusStorhaug 244bf32
Let Zensical discover generated command pages
MariusStorhaug b03edf1
Remove broken repository actions from generated help
MariusStorhaug File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,131 @@ | ||
| # Zensical configuration | ||
| # https://zensical.org/docs/setup/basics/ | ||
| # Process-PSModule v8 copies this file into outputs/site and stages generated | ||
| # documentation under outputs/site/docs. | ||
|
|
||
| [project] | ||
| site_name = "Fonts" | ||
| site_url = "https://psmodule.io/Fonts/" | ||
| docs_dir = "docs" | ||
| repo_name = "PSModule/Fonts" | ||
| repo_url = "https://github.com/PSModule/Fonts" | ||
| edit_uri = "edit/main/" | ||
| copyright = "Copyright © 2023 - 2026 PSModule" | ||
| extra_javascript = [ | ||
| "https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js", | ||
| # The v8 site assembly does not copy repository override directories. | ||
| "https://cdn.jsdelivr.net/gh/PSModule/Process-PSModule@59e056cab018777a8f158f88fcabdb57125494ef/docs/overrides/assets/javascripts/tablesort.js", | ||
| ] | ||
| extra_css = [ | ||
| # Pin the current Process-PSModule navigation behavior used as the baseline. | ||
| "https://cdn.jsdelivr.net/gh/PSModule/Process-PSModule@59e056cab018777a8f158f88fcabdb57125494ef/docs/overrides/assets/stylesheets/navigation.css", | ||
| ] | ||
| [project.theme] | ||
| language = "en" | ||
| font.text = "Mona Sans" | ||
| font.code = "Source Code Pro" | ||
| logo = "https://raw.githubusercontent.com/PSModule/Fonts/main/icon/icon.png" | ||
| favicon = "https://raw.githubusercontent.com/PSModule/Fonts/main/icon/icon.png" | ||
| features = [ | ||
| "announce.dismiss", | ||
| "content.code.annotate", | ||
| "content.code.copy", | ||
| "content.tooltips", | ||
| "navigation.expand", | ||
| "navigation.footer", | ||
| "navigation.indexes", | ||
| "navigation.instant", | ||
| "navigation.instant.prefetch", | ||
| "navigation.instant.preview", | ||
| "navigation.instant.progress", | ||
| "navigation.tabs", | ||
| "navigation.top", | ||
| "navigation.tracking", | ||
| "search.highlight", | ||
| "search.share", | ||
| "search.suggest", | ||
| "toc.follow", | ||
| ] | ||
|
|
||
| [project.theme.icon] | ||
| repo = "material/github" | ||
| link = "material/link-variant" | ||
|
|
||
| [[project.theme.palette]] | ||
| media = "(prefers-color-scheme)" | ||
| toggle.icon = "material/link" | ||
| toggle.name = "Switch to dark mode" | ||
|
|
||
| [[project.theme.palette]] | ||
| media = "(prefers-color-scheme: dark)" | ||
| scheme = "slate" | ||
| primary = "black" | ||
| accent = "light blue" | ||
| toggle.icon = "material/toggle-switch-off-outline" | ||
| toggle.name = "Switch to light mode" | ||
|
|
||
| [[project.theme.palette]] | ||
| media = "(prefers-color-scheme: light)" | ||
| scheme = "default" | ||
| primary = "black" | ||
| accent = "light blue" | ||
| toggle.icon = "material/toggle-switch" | ||
| toggle.name = "Switch to system preference" | ||
|
|
||
| [project.plugins.meta] | ||
|
|
||
| [project.plugins.search] | ||
|
|
||
| [project.markdown_extensions.toc] | ||
| permalink = "#" | ||
|
|
||
| [project.markdown_extensions.attr_list] | ||
|
|
||
| [project.markdown_extensions.abbr] | ||
|
|
||
| [project.markdown_extensions.admonition] | ||
|
|
||
| [project.markdown_extensions.def_list] | ||
|
|
||
| [project.markdown_extensions.footnotes] | ||
|
|
||
| [project.markdown_extensions.md_in_html] | ||
|
|
||
| [project.markdown_extensions.tables] | ||
|
|
||
| [project.markdown_extensions.pymdownx.details] | ||
|
|
||
| [project.markdown_extensions.pymdownx.superfences] | ||
| custom_fences = [ | ||
| { name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }, | ||
| ] | ||
|
|
||
| [project.markdown_extensions.pymdownx.tasklist] | ||
| custom_checkbox = true | ||
|
|
||
| [project.markdown_extensions.pymdownx.snippets] | ||
|
|
||
| [project.extra.consent] | ||
| title = "Cookie consent" | ||
| description = """ | ||
| We use cookies to recognize your repeated visits and preferences, as well | ||
| as to measure the effectiveness of our documentation and whether users | ||
| find what they're searching for. With your consent, you're helping us to | ||
| make our documentation better. | ||
| """ | ||
| actions = ["accept", "reject"] | ||
|
|
||
| [[project.extra.social]] | ||
| icon = "fontawesome/brands/discord" | ||
| link = "https://discord.gg/jedJWCPAhD" | ||
| name = "PSModule on Discord" | ||
|
|
||
| [[project.extra.social]] | ||
| icon = "material/powershell" | ||
| link = "https://www.powershellgallery.com/packages/Fonts" | ||
| name = "Fonts on the PowerShell Gallery" | ||
|
|
||
| [[project.extra.social]] | ||
| icon = "fontawesome/brands/github" | ||
| link = "https://github.com/PSModule/Fonts" | ||
| name = "Fonts on GitHub" | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.