#aaronpklong story short, no need to add OpenID Connect ID Tokens, only needed to have the userinfo endpoint respond with the info okta uses to provision the user on that end
#Loqiaaronpk has 33 karma in this channel over the last year (139 in all channels)
#capjamesg[d]Oh no, I said good morning in #dev instead of #chat 😂
#[schmarty]good mornings are appreciated and needed here, as well!
jacky and mro joined the channel
mro, jacky, tetov-irc, mbrozirkb__, baracurda and franklen[d] joined the channel
#jackywould it make sense in practice to automatically convert URLs to links in a request like h=entry&content=Check+out+https://indieweb.org (ignore incomplete encoding)
#jackyI don't know if I want to do this automatically or rely on a Micropub client to send the plain form and HTMLform of a payload
#aaronpkI would say yes it's a good idea to turn urls into Hyperlinks for the html version of you can. It's surprisingly hard to auto link urls in HTML later
mikeputnam, mro, barnaby, jacky and KartikPrabhu joined the channel
mro, [jgmac1106], sp1ff, mro_ and jacky joined the channel
#[tantek]it is hard, and that's one of the reasons I made my auto_link function idempotent. that is you can run it on the output and it won't double-link things
#[tantek]GWG, for a page, an h-feed of h-cite items/children. For a post (e.g. "cool links this week"), an h-entry with "just" a list of h-cite children inside.
#[KevinMarks]Which will do its best to make you a sensible graph which you give hints on what to do.
#[tantek]fundamentally the methodology for a "good" templating language IMO needs to be is it easy to edit and roughly preview without having to "run it through the whole system"? in otherwords, does it roughly "work" as static HTML?
#[tantek]so in this regard, I think that means templating that at least allows for (if not encourages) placeholder content in the template which is later replaced
#[aciccarello]I get more annoyed with learning the templating language's version of control flow operations.
#[tantek]maybe I'm the only one that doesn't see control flow as essential in templates
#[KevinMarks]Do you have lots of small templates that you combine then?
#[KevinMarks]the vscode cycle of edit and refresh makes it easy enough to iterate for me
#[tantek]I want templates to be editable / previewable without "running code" or setting up an environment to do so
#[tantek]Every time I've tried to (and even gotten help with!) setting up a local dev "environment" to "run all the code", it breaks in some random way with an OS update or language update or something. It sucks and is an annoying tax
#[tantek]it has also felt like a bad layering violation. why should I have to run procedural code just to edit/preview the visuals of a template?