-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move removal of initial line feed to a plugin
- Loading branch information
Showing
7 changed files
with
77 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
|
||
<meta charset="utf-8" /> | ||
<link rel="shortcut icon" href="favicon.png" /> | ||
<title>Remove initial line feed ▲ Prism plugins</title> | ||
<base href="../.." /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link rel="stylesheet" href="themes/prism.css" data-noprefix /> | ||
<script src="prefixfree.min.js"></script> | ||
|
||
<script>var _gaq = [['_setAccount', 'UA-33746269-1'], ['_trackPageview']];</script> | ||
<script src="http://www.google-analytics.com/ga.js" async></script> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<div class="intro" data-src="templates/header-plugins.html" data-type="text/html"></div> | ||
|
||
<h2>Remove initial line feed</h2> | ||
<p>Removes the initial line feed in code blocks.</p> | ||
</header> | ||
|
||
<section class="language-markup"> | ||
<h1>How to use</h1> | ||
|
||
<p>Obviously, this is supposed to work only for code blocks (<code><pre><code></code>) and not for inline code.</p> | ||
<p>Add class <strong>remove-initial-line-feed</strong> to your desired <code><pre></code>.</p> | ||
</section> | ||
|
||
<section> | ||
<h1>Examples</h1> | ||
|
||
<h2>Without adding the class</h2> | ||
<pre class="language-markup"><code> | ||
<div></div> | ||
</code></pre> | ||
|
||
<h2>With the class added</h2> | ||
<pre class="language-markup remove-initial-line-feed"><code> | ||
<div></div> | ||
</code></pre> | ||
|
||
</section> | ||
|
||
<footer data-src="templates/footer.html" data-type="text/html"></footer> | ||
|
||
<script src="prism.js"></script> | ||
<script src="plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js"></script> | ||
<script src="utopia.js"></script> | ||
<script src="components.js"></script> | ||
<script src="code.js"></script> | ||
|
||
|
||
</body> | ||
</html> |
13 changes: 13 additions & 0 deletions
13
plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Prism.hooks.add('before-highlight', function(env) { | ||
if (env.code) { | ||
var pre = env.element.parentNode; | ||
var clsReg = /\s*\bremove-initial-line-feed\b\s*/; | ||
if ( | ||
pre && pre.nodeName.toLowerCase() === 'pre' && | ||
// Apply only if the <pre> or the <code> have the class | ||
(clsReg.test(pre.className) || clsReg.test(env.element.className)) | ||
) { | ||
env.code = env.code.replace(/^(?:\r?\n|\r)/, ''); | ||
} | ||
} | ||
}); |
1 change: 1 addition & 0 deletions
1
plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters