I have the following RMarkdown file:
---
title: "Test"
author: "Mr. Test"
date: "September 5, 2018"
output: pdf_document
urlcolor: red
---
[URL](www.google.com)
This produces the following:
The red link leads to www.google.com, as expected. Awesome. Now, say I wanted my URLs to be a nameless hexadecimal colour, say, #FF3300
. I have tried various approaches to providing this colour without success. For example, #FF3300
is ignored as it is interpreted as a comment; "#FF3300"
throws an error, as does "0xFF3300"
and 0xFF3300
. So, my question: what is the correct syntax when specifying hexadecimal colours in a YAML header?