I have been following with interest your questions and queries in the IndieWeb chat, especially in regards to WordPress. I thought it might be useful to document my workflow associated with Read Write Collect for you:
I have taken to using HTML to add media or multiple paragraphs into the ‘quote’ box.
His comment here reminds me that I’ve seen him doing much the same thing I’m often doing. However I ought to better document the small code snippets I’ve used to change the default of the Post Kinds Plugin to allow me to input arbitrary html and code into the quote part of the meta box to custom define my reply contexts. (The plugin generally strips out most html and scripts for security, but since I check these or make them manually myself (often when making posts via PESOS), I’m not worried about injected code.)
In great part it comes down to changing ‘false’ to ‘true’ in the indieweb-post-kinds.php
file:
define( 'POST_KINDS_KSES', false );
Though there are one or two other bits so that I don’t need to redefine it each time the plugin changes.
Chris you reminded me that I forgot to call-out my use of the Post Editor Buttons plugin to add snippets.
I finally got around to documenting the kses filter portion here: Allowing arbitrary HTML in the Summary/Quote field in the Post Kinds Plugin.