Compare commits

..

No commits in common. "4da1081c40630bb006d6c3492bd2baf48b594feb" and "9becf4c654bdff2609704c97efa3aade91524860" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View File

@ -203,7 +203,7 @@
var keyword_tags = document.querySelectorAll('.keyword');
keyword_tags.forEach(function(tag, idx) {
var kw = (tag.title || tag.textContent).trim().replace(/\n */, ' ');
var kw = (tag.title || tag.innerHTML).trim().replace(/\n */, ' ');
var firstLetter = kw.charAt(0);
var remainder = kw.slice(1);

View File

@ -74,7 +74,8 @@ ol {
margin: 0em 0 0 1.5em;
}
li { margin-top: 0.2em; }
li { margin-top: 0.5em;
margin-bottom: 1em; }
.post-info {
float: right;