It's been a while since we checked in here, so here's what's going on with the Baseline theme.
Upcoming changes will include:
I've published a minor update v0.1.5 to the Baseline theme. It now shows a minimum number of posts on the home page, even if you haven't written any posts in the past two months.
Now that linkblogs have been added as a feature to WordLand, we're thinking about how best to display them with the Baseline theme. I've put up a prototype of a linkblog in WordPress to experiment with the layout. (The prototype gets it's data by polling the RSS feed once an hour rather than from WordLand, but the basic idea is the same.)
I'm trying out a new logic for the home page. Instead of using infinite scroll to eventually show all posts, we're showing only the posts for the current and previous month, just like Scripting News. We don't link to anything older, since old news is no longer news, and good older posts will have links from elsewhere.
There will be an option to show the traditional WordPress pagination links to older posts for those who prefer that behavior.
It's nice to have the baseline around, because now I have something to match the presentation of H3's with. The next version of WordLand will have that worked out.
Had to back out of the Styles panel of the Settings command, I did it way too fast, each feature it added had to be tested in this very particular context.
The context is Medium Editor, Markdown and WordPress. None of which were designed to work with each other. We're lucky to have a core subset that works, enough to support writers.
I think to get a really complete editor, you have to start with Markdown or HTML and work it out with WordPress.
I have made the style of H3 agree with the style of in the Baseline theme.
My answers to the questions from May 4, 2025:
Other problems I've noticed
like this isn't very distinguishable from normal text (issue on GitHub).This is a list of things that I want to try out on the new baseline theme.
Here are five great MLB first basemen and what made each of them especially interesting:
Lou Gehrig – The "Iron Horse" of the Yankees, famous for his durability, humility, and tragic early retirement due to ALS, which now bears his name.
Albert Pujols – A modern legend known for his all-around hitting, consistency, and longevity, finishing with over 700 home runs.
Willie McCovey – Towering lefty slugger for the Giants, feared for his monstrous power and iconic presence in the batter’s box.
Keith Hernandez – Brilliant defensively, redefining how first base was played with range, quickness, and leadership—also a memorable personality.
Frank Thomas – “The Big Hurt” dominated the ‘90s with his intimidating size and incredible hitting eye, combining power with patience.
Thanks for listening, this has been a test!
I've applied the single column layout proposed by Christy Nyiri. I personally think it looks fantastic.
Here are some WordLand styles.
This is a block quote. (This doesn't seem to be styled yet.)
Bold, italics, underlined (hmm, it's not underlined).
An ordered shopping list:
Notes as an unordered list:
Here's a paragraph that appears under the unordered list.
Scott, a discussion on the support repo about whether we should have H4 in the popup menu led me to consider an option I had been thinking about in the background — letting the user configure the contents of that menu. It's basically a list of names, chosen from these:
bold, italic, underline, anchor, h1, h2, h3, quote, unorderedlist, orderedlist, pre, removeFormat, justifyLeft, justifyCenter, justifyRight, justifyFull, indent, outdent
They all seem to work. Special provisions need to be made in the baseline site for h1, h2, and h3, esp h3.
h3 should be the same font-size and line-height as a paragraph, but boldface.
It's the best way to add a headline to writing in wordland. Imho any other size starts getting into MySpace territory.
For Change #5, I once again used an add_filter function to replace the HTML generated by WordPress, this time for the next/prev links. The links show only an arrow at 1.5em (24 px), no underline, with the post title in the title attribute of the anchor tag so it shows up as a tool tip.
For Change #10, since we can include PHP code in the theme, we don't need to use JavaScript to filter out the Uncategorized category. We can use an add_filter function on the get_the_terms hook in functions.php to remove Uncategorized before the wp:post-terms block displays the categories.
The block also has a parameter for the prefix to the displayed list, so we changed it from "Posted in " to "Categories: ".