Skip to content

Commit 2e02975

Browse files
committed
blog post
1 parent 249b0d3 commit 2e02975

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

docs/blog/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Textual Blog
22

3-
Welcome to the Textual blog, where we post about the latest releases and developments in the Textual world.
3+
New blog

docs/custom_theme/main.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<meta property="og:url" content="{{ page.canonical_url | url }}">
1616
<meta property="og:site_name" content="Textual Documentation">
1717
<meta property="og:description" content="Textual is a TUI framework for Python, inspired by modern web development.">
18-
1918
<meta property="og:image" content="https://raw.githubusercontent.com/Textualize/textual/main/imgs/textual.png">
2019

2120
{% endblock %}

docs/stylesheets/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ h3 .doc-heading code {
1313
monospace;
1414
}
1515

16-
body[data-md-color-primary="indigo"] .excalidraw svg {
16+
body[data-md-color-primary="black"] .excalidraw svg {
1717
filter: invert(100%) hue-rotate(180deg);
1818
}
1919

20-
body[data-md-color-primary="indigo"] .excalidraw svg rect {
20+
body[data-md-color-primary="black"] .excalidraw svg rect {
2121
fill: transparent;
2222
}
2323

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ theme:
175175
name: Switch to dark mode
176176
- media: "(prefers-color-scheme: dark)"
177177
scheme: slate
178-
primary: indigo
178+
primary: black
179179
toggle:
180180
icon: material/weather-night
181181
name: Switch to light mode
@@ -189,6 +189,7 @@ plugins:
189189
as_creation: date
190190
categories:
191191
- categories
192+
- release
192193
- tags
193194
- search:
194195
- autorefs:

src/textual/pilot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async def press(self, *keys: str) -> None:
3232
"""Simulate key-presses.
3333
3434
Args:
35-
*key: Keys to press.
35+
*keys: Keys to press.
3636
3737
"""
3838
if keys:

src/textual/reactive.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def init(
6868
layout (bool, optional): Perform a layout on change. Defaults to False.
6969
repaint (bool, optional): Perform a repaint on change. Defaults to True.
7070
always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
71+
7172
Returns:
7273
Reactive: A Reactive instance which calls watchers or initialize.
7374
"""

0 commit comments

Comments
 (0)