spiralofhope
Forum Replies Created
-
The setting “Use default filetype icons” does not disable this feature.
I tried the “Clear Page Cache” for BlogText, and I also used my cache plugin’s “Empty All Caches”. Icons still appear next to links. I’m testing with links like https://example.com
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] discuss table of contentsNow I can see just how complex this can get!
I retract my request. =)
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] fix lists followed by a sectionYes I’m using the most recent version.
This example is definitely not rendering correctly for me:
* item 1 ** item 1.1 *** item 1.1.1 * item 2
The HTML being created is:
<ul> <li class="first-item"> <p class="no-margin">item 1</p> <ul> <li> <p class="no-margin">item 1.1</p> <ul> <li>item 1.1.1</li> </ul> </li> </ul> </li> <li class="last-item"> <p>item 2</p> </li> </ul>
So you’re correct about the <p>…</p>. However, do you think there’s a way to leverage the no-margin class to make a kludgey workaround?
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] fix double spaces in sectionsThanks, I’m following the new ticket.
closing this one.
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] implement table of contents themingMy theme, “Parament”, does indeed colour tables.
Settings > BlogText, I removed all content in “Custom CSS” and then clicked “Save Changes” then “Clear Page Cache”.
I created a new post with the following content:
— BEGIN
<table><tr><td>test</td></tr></table>
[[[TOC]]]
= test
— END
Previewing this, the BlogText table of contents looks themed for a light website.
I could file a ticket upstream to have the theme updated, but when I look at the resulting CSS, it looks like BlogText is forcing its own colour scheme.
Here is some CSS I extracted:
.toc{max-width:200px;border:1px solid #AAA;background-color:#F9F9F9;padding:5px 25px;margin:5px 10px;font-size:80%}.toc .toc-title{font-size:1.2em;border-bottom:1px solid #ccc;margin-bottom:0.5em}.toc .toc-toggle{font-size:75%;text-decoration:none;display:block;float:right;margin-left:5px}.toc ul{list-style-type:none;list-style-image:none;margin-left:0;margin-bottom:0 !important;padding-left:0;text-align:left}.toc ul ul{margin:0 0 0 1.5em}
I suppose it’s also possible that my W3 Total Cache plugin is doing something naughty.
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] discuss table of contentsI’m going to abandon Table of Contents Plus.
I’ll open another ticket to ask for help on styling the BlogText TOC.
[edit] I figured the TOC styling out. I hate CSS. Or maybe it just hates me.
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] fix lists followed by a sectionThis seems to be a difficult issue.
https://blogtext.mayastudios.com/syntax/#lists
* item 1
** item 1.1
*** item 1.1.1
* item 2, is rendered with a carriage return before item 1.1
I very very commonly use lists, so this is annoying. However, having written a little bit of code in this direction, I know exactly how obnoxious an issue this is. I empathize. =)
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] discuss table of contentsI see where it’s getting the ” ?” from. Mouseing over one of the headers displays it.
I think I’m going to be stuck theming the BlogText TOC and manually putting [TOC] in almost every entry.
Forum: Plugins
In reply to: [BlogText] [Plugin: BlogText] fix double spaces in sectionsWhile this may seem a strange issue, I often use sections like so:
= Section Name: Some text
Two spaces after a colon is normal for me.