1
0
Fork 0

Fix ndash wrapping

This commit is contained in:
Tim Van Baak 2023-09-11 20:06:55 -07:00
parent cc1ac0095b
commit 0c0fc21a1b
1 changed files with 7 additions and 7 deletions

View File

@ -28,13 +28,13 @@ article summary {
<script type="text/javascript">
var quoteText = [
'"Equus, ergo sum." &ndash;Descartes probably',
'"Granted that we want the truth: why not rather horses?" &ndash;Nietzsche probably',
'"We are what we repeatedly do." &ndash;Aristotle, likely while pretending to be a horse',
'"All things are good and fair, because all is truth. Look at the horse, that great beast that is so near to man... What gentleness, what confidence and what beauty!" &ndash;Elder Zosima',
'"You call him the dumb horse, but in his teaching he will one day produce such a neighing that it will be heard throughout the world." &ndash;said of Thomas Equinas',
'"They are not lovers of horses, whom the horses do not love in return." &ndash;Plato',
'"The horse is all that is the case." &ndash;Wittgenstallion'
'"Equus, ergo sum." <span style="white-space: nowrap">&ndash;Descartes</span> probably',
'"Granted that we want the truth: why not rather horses?" <span style="white-space: nowrap">&ndash;Nietzsche</span> probably',
'"We are what we repeatedly do." <span style="white-space: nowrap">&ndash;Aristotle</span>, likely while pretending to be a horse',
'"All things are good and fair, because all is truth. Look at the horse, that great beast that is so near to man... What gentleness, what confidence and what beauty!" <span style="white-space: nowrap">&ndash;Elder</span> Zosima',
'"You call him the dumb horse, but in his teaching he will one day produce such a neighing that it will be heard throughout the world." <span style="white-space: nowrap">&ndash;said</span> of Thomas Equinas',
'"They are not lovers of horses, whom the horses do not love in return." <span style="white-space: nowrap">&ndash;Plato</span>',
'"The horse is all that is the case." <span style="white-space: nowrap">&ndash;Wittgenstallion</span>'
]
document.getElementById("qotd").innerHTML = quoteText[Math.floor(Math.random() * quoteText.length)];
</script>