-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow using {% (end)raw %} tags #1220
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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
78 changes: 78 additions & 0 deletions
78
src/lib/markbind/src/lib/markdown-it/patches/markdown-it-attrs-nunjucks.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,78 @@ | ||
/* | ||
Patch for markdown-it-attrs and nunjuck's usage of {% ... %} | ||
*/ | ||
|
||
const mdAttrsUtils = require('markdown-it-attrs/utils'); | ||
|
||
mdAttrsUtils.hasDelimiters = function (where, options) { | ||
|
||
if (!where) { | ||
throw new Error('Parameter `where` not passed. Should be "start", "middle", "end" or "only".'); | ||
} | ||
|
||
/** | ||
* @param {string} str | ||
* @return {boolean} | ||
*/ | ||
return function (str) { | ||
// we need minimum three chars, for example {b} | ||
let minCurlyLength = options.leftDelimiter.length + 1 + options.rightDelimiter.length; | ||
if (!str || typeof str !== 'string' || str.length < minCurlyLength) { | ||
return false; | ||
} | ||
|
||
function validCurlyLength (curly) { | ||
let isClass = curly.charAt(options.leftDelimiter.length) === '.'; | ||
let isId = curly.charAt(options.leftDelimiter.length) === '#'; | ||
return (isClass || isId) | ||
? curly.length >= (minCurlyLength + 1) | ||
: curly.length >= minCurlyLength; | ||
} | ||
|
||
let start, end, slice, nextChar; | ||
let rightDelimiterMinimumShift = minCurlyLength - options.rightDelimiter.length; | ||
switch (where) { | ||
case 'start': | ||
// first char should be {, } found in char 2 or more | ||
slice = str.slice(0, options.leftDelimiter.length); | ||
start = slice === options.leftDelimiter ? 0 : -1; | ||
end = start === -1 ? -1 : str.indexOf(options.rightDelimiter, rightDelimiterMinimumShift); | ||
// check if next character is not one of the delimiters | ||
nextChar = str.charAt(end + options.rightDelimiter.length); | ||
if (nextChar && options.rightDelimiter.indexOf(nextChar) !== -1) { | ||
end = -1; | ||
} | ||
break; | ||
|
||
case 'end': | ||
// last char should be } | ||
start = str.lastIndexOf(options.leftDelimiter); | ||
end = start === -1 ? -1 : str.indexOf(options.rightDelimiter, start + rightDelimiterMinimumShift); | ||
end = end === str.length - options.rightDelimiter.length ? end : -1; | ||
break; | ||
|
||
case 'only': | ||
// '{.a}' | ||
slice = str.slice(0, options.leftDelimiter.length); | ||
start = slice === options.leftDelimiter ? 0 : -1; | ||
slice = str.slice(str.length - options.rightDelimiter.length); | ||
end = slice === options.rightDelimiter ? str.length - options.rightDelimiter.length : -1; | ||
break; | ||
} | ||
|
||
/* | ||
Simple patch here - abort if the delimiters wrap around % % | ||
*/ | ||
const isCharAfterStartPercent = str.charAt(start + 1) === '%'; | ||
const isCharBeforeEndPercent = str.charAt(end - 1) === '%'; | ||
if (isCharAfterStartPercent && isCharBeforeEndPercent) { | ||
return false; | ||
} | ||
|
||
return start !== -1 | ||
&& end !== -1 | ||
&& validCurlyLength(str.substring(start, end + options.rightDelimiter.length)); | ||
}; | ||
}; | ||
|
||
module.exports = require('markdown-it-attrs'); |
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
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
6 changes: 3 additions & 3 deletions
6
test/functional/test_site/expected/requirements/UserStories._include_.html
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*the only functional changes in this file are these 5 lines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to confirm, this won't break the other nunjucks templating syntax that use
{% ...%}
right?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, if anything it should 'fix' it!
e.g.
this previously works (and still does) because nunjucks rendering is the first step and long precedes markdown rendering, so the
{% for/endfor %}
is 'erased' long before markdown-it-attrs touches it.It dosen't work in the case of {% raw/endraw %} because it is still present at the time of markdown rendering though
So this should give more flexibility in future restructuring of the rendering order (if ever needed)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense, thanks for clarifying!