However,
Any thoughts?
thanks
If I have a link to another tiddler and attempt to apply formatting to it, the effect is inconsistent.
I have a link [[my tiddler]] which points to a tiddler that already exists.
- //[[my tiddler]]// works in that the text is again rendered in italics as if the tiddler doesn't exist.
- ~~[[my tiddler]]~~ also works in that the link is now struck through.
- __[[my tiddler]]__ also works in that the link is now underlined
However,
- ''[[my tiddler]]'' has no effect i.e. not bold
button.tc-tiddlylink,
a.tc-tiddlylink {
text-decoration: none;
font-weight: normal;
color: <<colour tiddler-link-foreground>>;
-webkit-user-select: inherit; /* Otherwise the draggable attribute makes links impossible to select */
}
.tc-sidebar-lists a.tc-tiddlylink {
color: <<colour sidebar-tiddler-link-foreground>>;
}
.tc-sidebar-lists a.tc-tiddlylink:hover {
color: <<colour sidebar-tiddler-link-foreground-hover>>;
}
button.tc-tiddlylink:hover,
a.tc-tiddlylink:hover {
text-decoration: underline;
}
a.tc-tiddlylink-resolves {
}
a.tc-tiddlylink-shadow {
font-weight: bold;
}
a.tc-tiddlylink-shadow.tc-tiddlylink-resolves {
font-weight: normal;
}
a.tc-tiddlylink-missing {
font-style: italic;
}
a.tc-tiddlylink-external {
text-decoration: underline;
color: <<colour external-link-foreground>>;
background-color: <<colour external-link-background>>;
}
a.tc-tiddlylink-external:visited {
color: <<colour external-link-foreground-visited>>;
background-color: <<colour external-link-background-visited>>;
}
a.tc-tiddlylink-external:hover {
color: <<colour external-link-foreground-hover>>;
background-color: <<colour external-link-background-hover>>;
}
a.tc-tiddlylink-resolves {font-weight:inherit;}strong > button.tc-tiddlylink,strong > a.tc-tiddlylink {font-weight:bold;}
a.tc-tiddlylink-resolves {font-weight:inherit;}