将 pdf 嵌入文章后,jekyll 不会呈现文本

jekyll won't render text after pdf is embedded into an article

我在一篇文章中有以下内容

---
id: 1001
title: 'Cost of Self-Hosting a VPN server in AWS'
date: 2019-07-09T15:49:03-04:00
---

Some text

<object data="/assets/uploads/2019/07/09/Aws-Bill-Jun2019.pdf" width="1000" height="1000" type='application/pdf' />

Some more text

现在 jekyll 可以正确呈现初始文本块和 PDF,但不会呈现 pdf 之后的文本,也不会呈现页脚和导航。

我不想做任何自我推销,但你 can see this in action here。如果您查看页面源代码,那么在 pdf 之后有几段,这些不会显示在页面上。

有人知道为什么会这样吗?我按照 ,嵌入了 PDF。当 object 与 markdown 一起嵌入页面时是否存在一些问题,即 markdown 与 HTML.

混合

<object>closing tag is mandatory

Tag omission : None, both the starting and ending tag are mandatory.

这将解决您的问题。

<object 
  data="/assets/uploads/2019/07/09/Aws-Bill-Jun2019.pdf" 
  width="1000" 
  height="1000" 
  type="application/pdf"></object>