Skip to content

Commit 9810620

Browse files
author
Tom Clark
committed
FINALLY got kramdown to parse html content as markdown
1 parent d4ff435 commit 9810620

File tree

4 files changed

+154
-161
lines changed

4 files changed

+154
-161
lines changed

javascripts/sidebar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var tutorials, visible, visible_counts, hidden, dict, filters = [];
22

33
$(function() {
44
// Grab all tutorials
5-
tutorials = $("section.tutorial");
5+
tutorials = $("div.tutorial");
66

77
// Mark all tutorials as visible
88
tutorials.show();
@@ -67,7 +67,7 @@ function update_visibility() {
6767
};
6868

6969
function update_sidebar() {
70-
visible = _.chain($("section.tutorial:visible"))
70+
visible = _.chain($("div.tutorial:visible"))
7171
// Collect all the facets
7272
.map(function(tutorial) { return $(tutorial).data().facets; })
7373
// and combine all facets into a nested hash

0 commit comments

Comments
 (0)