我目前正在运行一个基于 PHP 的 Content-Management-System,它在Markdown Extra的帮助下生成其 HTML 内容。大多数内容由标题和子标题构成,导致页面非常长。在每个页面的开头,我借助列表和Markdown Extra 的 Header Id Attribute创建了一个目录。
为了缩短页面视图的长度,我想在第一级标题上使用 jQuery 的选项卡插件。
问题是Markdown Extra的输出与 jQuery Tabs Plugin所期望的不兼容,因为Markdown Extra没有将部分的内容包装到单独的 div 标记中。
有没有办法让这两个库一起工作?
编辑
这是 HTML 输出的样子:
<p>Some intro text...</p>
<h3>Table of content</h3>
<ul>
<li><a href="#sub1">Topic 1</a></li>
<li><a href="#sub2">Topic 2</a></li>
<li><a href="#sub3">Topic 3</a></li>
</ul>
<h3 id="sub1">Topic 1</h3>
<p>The content of this topic.</p>
<h3 id="sub2">Topic 2</h3>
<p>The content of this topic.</p>
<h3 id="sub3">Topic 3</h3>
<p>The content of this topic.</p>
..这是相应的降价代码:
Some intro text...
###Table of content###
* [Topic 1](#sub1)
* [Topic 2](#sub2)
* [Topic 3](#sub3)
###Topic 1### {#sub1}
The content of this topic.
###Topic 2### {#sub2}
The content of this topic.
###Topic 3### {#sub3}
The content of this topic.
解决方案
在 cobbal 的帮助下,我做了这个 jQuery 语句,它将 Markdown 标记转换为 Tabs 插件可以使用的东西:
$("#tabs :header").each(function()
{
var id = $(this).attr("id");
if(id=="") return;
var div = $("<div>");
var tagName = this.tagName;
$(this).nextAll().each(function()
{
if(this.tagName==tagName) return false;
div.append(this);
});
$(this).removeAttr("id");
div.attr("id", id);
$(this).before(div);
div.prepend(this);
});
但是,我需要转换标记以适应 Tabs 插件,而不仅仅是告诉 Tabs 插件它应该以不同的方式选择其内容,这一事实可能使该解决方案不是理想的解决方案。