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 ">
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 >
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’s t‑ 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–whenever
125+ < p >
126+ If you’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-->
0 commit comments