简体   繁体   English

项目符号列表未在blogdown .rmd文件中呈现

[英]bullet lists not rendering in blogdown .rmd file

Bullet points will not render when I serve my site in blogdown. 当我在Blogdown中服务网站时,项目符号将不会显示。 My site is hosted locally on my Windows 10 machine. 我的网站在Windows 10计算机上本地托管。 When I add html tags, the list actually works. 当我添加html标签时,该列表实际上起作用。 Bullet points render correctly when I open a blank rmd file in another project. 当我在另一个项目中打开空白的rmd文件时,项目符号正确呈现。

Example of my list code in the blogdown .rmd post: 我在blogdown .rmd帖子中的列表代码示例:

* text
* text
* text

And the working version using html tags: 以及使用html标签的工作版本:

<ul>
  <li>text</li>
  <li>text</li>
  <li>text</li>
</ul>
>sessionInfo()
R version 3.5.2 (2018-12-20)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)
Matrix products: default
locale:
[1] LC_COLLATE=English_United States.1252  LC_CTYPE=English_United States.1252    LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C                           LC_TIME=English_United States.1252    
attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     
loaded via a namespace (and not attached):
 [1] Rcpp_1.0.0       bookdown_0.9     digest_0.6.18    later_0.8.0      mime_0.6         R6_2.4.0         jsonlite_1.6     magrittr_1.5    
 [9] evaluate_0.13    blogdown_0.11    stringi_1.3.1    rstudioapi_0.9.0 promises_1.0.1   rmarkdown_1.11   tools_3.5.2      servr_0.13      
[17] stringr_1.4.0    httpuv_1.4.5.1   xfun_0.5         yaml_2.2.0       compiler_3.5.2   htmltools_0.3.6  knitr_1.22  

This is my first question asked on Stack Overflow. 这是我对堆栈溢出的第一个问题。 I did a lot of searching beforehand but please point me in the right direction if I missed the answer! 我事先做了很多搜索,但是如果错过答案,请指出正确的方向!

I'm also experiencing an issue where using the 'add image' addin does not work. 我还遇到了无法使用“添加图像”加载项的问题。 I don't know if they're related, but can post additional code snippets if it is relevant. 我不知道它们是否相关,但是如果相关,可以发布其他代码段。

Better example below: 以下是更好的示例:

---
title: "Methodology and link to BidVis"
author: "Braden"
date: '2019-03-14'
output:
  html_document:
    df_print: paged
categories: []
slug: methodology-and-link-to-bidvis
tags: []
bibliography: []
---

Introduction 介绍

knitr::opts_chunk$set(echo = TRUE)
library(kableExtra)
  options(kableExtra.auto_format = FALSE)
library(tidyverse)
library(data.table)
library(dplyr)
library(rio)
  install_formats()
library(ggrepel)
library(janitor)
library(lubridate)
library(broom)
library(generics)
library(plotly)
library(DT)

In speaking with my classmates and from my own experience, I sought to use the data to answer the following questions:
* How can I predict closing cost for an upcoming class?
* What is the relationship between TCE scores and course closing cost?
* What are the most powerful indicators of a class having a high closing cost?
* Is the "bid point inflation" effect real?

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

add an empty line before the list: 在列表之前添加一个空行:

In speaking with my classmates and from my own experience, I sought to use the data to answer the following questions:  

* How can I predict closing cost for an upcoming class?
* What is the relationship between TCE scores and course closing cost?
* What are the most powerful indicators of a class having a high closing cost?
* Is the "bid point inflation" effect real?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM