RMarkdown slidy_presentation缩进bootstrap网格中的最后一个项目符号

时间:2018-03-26 15:25:15

标签: r twitter-bootstrap-3 r-markdown

我很难理解为什么列表的last-child在引导网格中显示时会在slidy_presentation中缩进。

这是一个最小的.Rmd文件。请注意theme: default的规范,以便为我提供Bootstrap 3。

---
title: "Bullets in grid"
output: 
  slidy_presentation:
    theme: default
---

# Slide

<div class="row">
  <div class="col-md-5" style="vertical-align:middle;">
I'm some content!
  </div>
  <div class="col-md-7">
- Import with `readr`
- Reshape with `tidyr`
- Filter, modify and query with `dplyr`
- Visualise with `ggplot2`
  </div>
</div>

Content before end of slide.

这是违规缩进的截图:

enter image description here

如果我手动制作一个列表,它可以正常工作:

---
title: "Bullets in grid"
output: 
  slidy_presentation:
    theme: default
---

# Slide

<div class="row">
  <div class="col-md-5" style="vertical-align:middle;">
I'm some content!
  </div>
  <div class="col-md-7">
<ul>
<li>Import with `readr`</li>
<li> Reshape with `tidyr`</li>
<li>Filter, modify and query with `dplyr`</li>
<li>Visualise with `ggplot2`</li>
</ul>
  </div>
</div>

Content before end of slide.

1 个答案:

答案 0 :(得分:1)

我在修改代码时注意到一些奇怪的渲染问题。

尝试在内容之后移除</div>之前的空格 - 也许尝试额外的换行符,例如:

...
- Visualise with `ggplot2`

</div>
...

似乎要解决它。