Hugo目录前面有额外的点

时间:2016-05-15 16:49:59

标签: css go hugo

我正在使用Hugo静态站点生成器来创建一个网站。我正在使用此代码片段,如文档中所示,以创建TOC:

<div id="toc" class="well col-md-4 col-sm-6">
    {{ .TableOfContents }}
</div>

这是生成的代码:

<div id="toc" class="well col-md-4 col-sm-6">
   <nav id="TableOfContents">
   <ul>
      <li>
         <ul>
            <li><a href="#step-1-install-hugo:c57cc0038c788519b441e0331c8bebc7">Step 1. Install Hugo</a></li>
            <li><a href="#step-2-build-the-docs:c57cc0038c788519b441e0331c8bebc7">Step 2. Build the Docs</a></li>
            <li><a href="#step-3-change-the-docs-site:c57cc0038c788519b441e0331c8bebc7">Step 3. Change the docs site</a></li>
            <li><a href="#step-4-have-fun:c57cc0038c788519b441e0331c8bebc7">Step 4. Have fun</a></li>
         </ul>
      </li>
   </ul>
   </nav>
</div>

由于这个原因,我得到了额外的子弹。有谁能解决这个问题?或者你可以建议CSS从第一个ul中删除子弹。

2 个答案:

答案 0 :(得分:3)

使用以下css:

#toc ul { 
  list-style-type: none; 
}

#toc ul ul { 
  list-style-type: disc; 
}

答案 1 :(得分:2)

这对我的需求很有效

{{ .TableOfContents | replaceRE "<ul>[[:space:]]*<li>[[:space:]]*<ul>" "<ul>" | replaceRE "</ul>[[:space:]]*</li>[[:space:]]*</ul>" "</ul>" |  safeHTML }}

以及此css

nav > ul > li {
  list-style: none;
}