Hello,
I writing an RMarkdown document and am trying to style it by adding a CSS path file to the YAML header. However, when I try to knit the document, I get a scanner error:
title: "Title"
output:
html_document:
css: "filepath.css"
# > Error in yaml::yaml.load(..., eval.expr = TRUE) :
Scanner error: while parsing a quoted scalar at line 6, column 8 did not find expected hexdecimal number at line 6, column 13
Calls: <Anonymous> ... parse_yaml_front_matter -> yaml_load -> <Anonymous>
Execution halted
What is going on? How do I get rid of the error?