Skip to content

Commit

Permalink
disable word wrap on YAML conversion to prevent breaking permalinks, f…
Browse files Browse the repository at this point in the history
…ixes #15
  • Loading branch information
benbalter committed May 25, 2013
1 parent 99da3cd commit b73a9e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jekyll-export.php
Expand Up @@ -191,7 +191,7 @@ function convert_posts() {
}

// Jekyll doesn't like word-wrapped permalinks
$output = Spyc::YAMLDump( $meta, false, 80 );
$output = Spyc::YAMLDump( $meta, false, 0 );

$output .= "---\n";
$output .= $this->convert_content( $post );
Expand Down

0 comments on commit b73a9e5

Please sign in to comment.