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:
#!python hl_lines="3 4"
""" Bubble sort """
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
``` python linenums="1" hl_lines="3 4"
""" Bubble sort """
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
```
## Supported languages <small>excerpt</small>

View File

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

View File

@ -29,7 +29,7 @@
<meta name="author" content="{{ config.site_author }}">
{% endif %}
<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 %}
{% block htmltitle %}
{% if page and page.meta and page.meta.title %}

View File

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

View File

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

2
package-lock.json generated
View File

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

View File

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

View File

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