mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
Maintains better backward-compatability. Documentation updated, including
how to override the default. Also renamed the entry_point to 'search'.
The lib is still 'legacy_search'. When a new/better search plugin is
developed, the `search` entry_point will be pointed there so the default
behavior will inlcude the upgrade and a new `entry_point` will be added
('legacy_search') which points to the old plugin for those who really want
it.
36 lines
1023 B
YAML
36 lines
1023 B
YAML
site_name: MkDocs
|
|
site_url: http://www.mkdocs.org
|
|
site_description: Project documentation with Markdown.
|
|
site_author: MkDocs Team
|
|
|
|
repo_url: https://github.com/mkdocs/mkdocs/
|
|
|
|
pages:
|
|
- Home: index.md
|
|
- User Guide:
|
|
- Writing Your Docs: user-guide/writing-your-docs.md
|
|
- Styling Your Docs: user-guide/styling-your-docs.md
|
|
- Configuration: user-guide/configuration.md
|
|
- Deploying Your Docs: user-guide/deploying-your-docs.md
|
|
- Custom Themes: user-guide/custom-themes.md
|
|
- Plugins: user-guide/plugins.md
|
|
- About:
|
|
- Release Notes: about/release-notes.md
|
|
- Contributing: about/contributing.md
|
|
- License: about/license.md
|
|
|
|
extra_css:
|
|
- css/extra.css
|
|
|
|
markdown_extensions:
|
|
- toc:
|
|
permalink:
|
|
- admonition
|
|
- def_list
|
|
|
|
copyright: Copyright © 2014 <a href="https://twitter.com/_tomchristie">Tom Christie</a>, Maintained by the <a href="/about/release-notes/#maintenance-team">MkDocs Team</a>.
|
|
google_analytics: ['UA-27795084-5', 'mkdocs.org']
|
|
|
|
plugins:
|
|
- search
|