Prepare 5.0.0rc1 release

This commit is contained in:
squidfunk
2020-03-10 17:37:51 +01:00
parent e3127489ca
commit 77987485af
8 changed files with 18 additions and 13 deletions

View File

@@ -231,13 +231,14 @@ def bubble_sort(items):
Result: Result:
#!python hl_lines="3 4" ``` python linenums="1" hl_lines="3 4"
""" Bubble sort """ """ Bubble sort """
def bubble_sort(items): def bubble_sort(items):
for i in range(len(items)): for i in range(len(items)):
for j in range(len(items) - 1 - i): for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]: if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j] items[j], items[j + 1] = items[j + 1], items[j]
```
## Supported languages <small>excerpt</small> ## Supported languages <small>excerpt</small>

View File

@@ -1,3 +1,7 @@
---
template: overrides/home.html
---
# Material <small>for MkDocs</small> # Material <small>for MkDocs</small>
## Create beautiful project documentation ## Create beautiful project documentation

View File

@@ -29,7 +29,7 @@
<meta name="author" content="{{ config.site_author }}"> <meta name="author" content="{{ config.site_author }}">
{% endif %} {% endif %}
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}"> <link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-5.0.0b3-2"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-5.0.0rc1">
{% endblock %} {% endblock %}
{% block htmltitle %} {% block htmltitle %}
{% if page and page.meta and page.meta.title %} {% if page and page.meta and page.meta.title %}

View File

@@ -3,5 +3,5 @@
-#} -#}
{% extends "base.html" %} {% extends "base.html" %}
{% block announce %} {% block announce %}
The quick brown fox jumps over the lazy dog!!! Material for MkDocs 5.0.0rc1
{% endblock %} {% endblock %}

View File

@@ -49,7 +49,7 @@ theme:
language: en language: en
features: features:
- tabs - tabs
- instant # - instant
palette: palette:
primary: indigo primary: indigo
accent: indigo accent: indigo

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "5.0.0b3-2", "version": "5.0.0rc1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "5.0.0b3-2", "version": "5.0.0rc1",
"description": "A Material Design theme for MkDocs", "description": "A Material Design theme for MkDocs",
"keywords": [ "keywords": [
"mkdocs", "mkdocs",

View File

@@ -23,5 +23,5 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block announce %} {% block announce %}
The quick brown fox jumps over the lazy dog!!! Material for MkDocs 5.0.0rc1
{% endblock %} {% endblock %}