Skip to content

Commit af4877e

Browse files
committed
Basic website updates in front of 3.14 launch
1 parent fb8a8fc commit af4877e

File tree

2 files changed

+28
-17
lines changed

2 files changed

+28
-17
lines changed

public/index.html

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>t-strings: coming soon to a Python near you</title>
6+
<title>t-strings: powerful new string formatting in Python 3.14</title>
77
<link rel="stylesheet" href="https://use.typekit.net/xls3jeb.css" />
88
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
99
<style type="text/tailwindcss">
@@ -71,9 +71,17 @@
7171
fill: var(--color-sunset);
7272
transition: fill 0.2s;
7373
}
74+
75+
code {
76+
font-size: 0.8em;
77+
background-color: var(--color-wash);
78+
padding-left: 0.1em;
79+
padding-right: 0.1em;
80+
border-radius: 0.25em;
81+
}
7482
</style>
7583
</head>
76-
<body>
84+
<body class="font-sans">
7785
<div
7886
class="flex flex-col items-center min-h-screen bg-lightest-wash py-8 bg-light-cloudbank text-treeline"
7987
>
@@ -85,12 +93,12 @@
8593
<a href="/playground.html">playground</a>
8694
</nav>
8795
<h1 class="font-sans font-bold text-cloudbank text-3xl">
88-
Hello, t-strings!
96+
Learn Python&rsquo;s t&#8209;strings
8997
</h1>
9098
<p>
9199
<strong>Template strings</strong>, also known as
92-
<strong>t-strings</strong>, are a new feature arriving in
93-
<strong>Python 3.14</strong> later in 2025.
100+
<strong>t-strings</strong>, are a new feature in
101+
<strong>Python 3.14</strong> that shipped in October 2025.
94102
</p>
95103
<p>
96104
You can
@@ -101,22 +109,25 @@ <h1 class="font-sans font-bold text-cloudbank text-3xl">
101109
>. There's a
102110
<a href="https://github.com/davepeck/pep750-examples" target="_blank"
103111
>large examples repo</a
104-
>,
105-
an <a href="https://github.com/t-strings/awesome-t-strings" target="_blank"
112+
>, an
113+
<a
114+
href="https://github.com/t-strings/awesome-t-strings"
115+
target="_blank"
106116
>awesome-t-strings</a
107-
> list,
108-
and a new
117+
>
118+
list, and a new
109119
<a
110120
href="https://github.com/orgs/t-strings/repositories"
111121
target="_blank"
112122
>GitHub org</a
113123
>.
114124
</p>
115-
<p class="block rounded-lg bg-light-cloudbank text-lightest-wash p-4">
116-
<strong class="!text-white">T-strings sprint</strong> @ PyCon!<br />
117-
Monday, May 19, Room 309, 9AM&ndash;whenever
125+
<p>
126+
If you&rsquo;re working with HTML, check out the
127+
<a href="https://github.com/t-strings/tdom"
128+
><code class="">tdom</code> project</a
129+
>, which lets you use t-strings to generate HTML safely and easily.
118130
</p>
119-
<p>Visit again soon for <i>much</i> more.</p>
120131
<p>Please say hello! The <strong>t-strings team</strong> is:</p>
121132
<ul class="text-sm font-sans list-disc list-inside team space-y-1 mx-4">
122133
<!-- KOUDAI-->

public/introduction.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
104104
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/languages/python.min.js"></script>
105105
</head>
106-
<body>
106+
<body class="font-sans">
107107
<div
108108
class="flex flex-col items-center min-h-screen bg-lightest-wash py-8 bg-light-cloudbank text-treeline"
109109
>
@@ -115,12 +115,12 @@
115115
<a href="/playground.html">playground</a>
116116
</nav>
117117
<h1 class="font-sans font-bold text-cloudbank text-3xl">
118-
A brief intro to t-strings
118+
A brief intro to t&#8209;strings
119119
</h1>
120120
<p>
121121
<strong>Template strings</strong>, also known as
122-
<strong>t-strings</strong>, are a new feature arriving in
123-
<strong>Python 3.14</strong> later in 2025.
122+
<strong>t-strings</strong>, are a new feature in
123+
<strong>Python 3.14</strong> that shipped in October 2025.
124124
</p>
125125
<p>They're like f-strings with <strong>superpowers</strong>.</p>
126126
<p>They share the <strong>same syntax</strong>:</p>

0 commit comments

Comments
 (0)