Я хочу выровнять текст в html-файле Rmarkdown с обеих сторон. Я знаю, как это сделать, используя <style> body {text-align: justify} </style>
после заголовка YAML (согласно этому ответу):
---
output: html_document
---
<style> body {text-align: justify} </style> <!-- Justify text. -->
# Text that is justified on both sides
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>. When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this. This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>. When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this.
Однако я хочу найти способ указать это в YAMLзаголовок напрямую, а не после заголовка YAML, но без необходимости прибегать к дополнительным файлам .css в том же хранилище. Другими словами, я не хочу помещать небольшой кусочек HTML-кода в отдельный файл .css и вызывать его через
output:
html_document:
css: justify.css
, и я не хочу, чтобы он был в основном тексте Rmarkdown. файл. Как я могу это сделать?