Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Algorithms to Live By Algorithms to Live By: The Computer Science of Human Decisions by Brian Christian and Tom Griffiths

This is a nonfiction book that made me stop and think several times. I really enjoyed finding ways that computer science could be applied to normal life and decision making. Especially useful for the technically inclined, but useful for many. I recommend checking it out.

Affiliate Link - As an Amazon Associate I earn from qualifying purchases.

How do I color text in markdown?

Tuesday, November 28, 2023

There isn't a built in way to underline. If html is supported you can use the <span style="color: blue;"> and </span> around your paragraph to center the item.

<span style="text-color: blue;">Here is blue text</span>

Here is blue text