-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsnippets-generator.js
45 lines (38 loc) · 1.22 KB
/
snippets-generator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function toHtmlEntities(text) {
var rgx1 = new RegExp('<','g');
var rgx2 = new RegExp('>','g');
var rgx3 = new RegExp('\r?\n','g');
var rgx4 = new RegExp(' ','g');
text = text.replace(rgx1, "<");
text = text.replace(rgx2, ">");
text = text.replace(rgx3, '<br />');
text = text.replace(rgx4, ' ');
return text;
}
function toCodeSnippet(text) {
return "<code>" + toHtmlEntities(text) + "</code>";
}
function createAllSnippets() {
$(".to-code").each(
function()
{
// Step 1: Create Snippet
$(this).wrap('</p>');
var codeSnippet = toCodeSnippet($(this).html());
$(this).unwrap();
$(this).html(codeSnippet);
// Step 2: Remove Extra spaces
var nSpaces = $(this).find("code").html().search(new RegExp("<")) / 6;
var strRpl = "";
for (var i=1; i<nSpaces; i++)
{
strRpl = strRpl + " ";
}
strRpl = strRpl;
$(this).find("code").html($(this).find("code").html().replace(new RegExp(strRpl + "<", 'g'), "<"));
$(this).find("code").html($(this).find("code").html().replace(new RegExp(strRpl, 'g'), ""));
$(this).find("code>br:first").remove();
$(this).find("code>br:last").remove();
}
);
}