Skip to content
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

Inconsistent check for Nunjucks disabling flag #3860

Closed
FlyingDR opened this issue Nov 14, 2019 · 6 comments · Fixed by #4498
Closed

Inconsistent check for Nunjucks disabling flag #3860

FlyingDR opened this issue Nov 14, 2019 · 6 comments · Fixed by #4498
Labels
enhancement New feature or request

Comments

@FlyingDR
Copy link

Nunjucks disabling flag check is potentially broken because of inconsistency of logic of passing and checking disableNunjucks parameter from renderers.

As of v4.0.0 disableNunjucks flag is defined by checking corresponding flag from renderer that is received through get() method. This get() method selects between normal and sync stores, but uses normal store by default. However, as can be seen from renderer registration method, this normal store contains Promise and hence provides no access to disableNunjucks flag that can be passed from renderer. Such flag will be stored into storeSync which contains original renderer function.

Correct code for disableNunjucks flag checking should use storeSync:

const disableNunjucks = ext && ctx.render.renderer.get(ext) && !!ctx.render.renderer.get(ext, true).disableNunjucks;

notice second true argument for get().

@curbengh
Copy link
Contributor

curbengh commented Dec 6, 2019

PR welcome

@noraj
Copy link
Contributor

noraj commented Dec 23, 2019

By chance could it help with #3259 ?

@curbengh
Copy link
Contributor

By chance could it help with #3259 ?

disableNunjucks is used in renderer to disable nunjucks for all the files covered by the renderer.

hexo.extend.renderer.register('md', 'html', (data, { disableNunjucks: true }) => {
  // ...
});

For example this plugin https://github.com/think-in-universe/hexo-stop-tag-plugins disables all nunjucks in markdown files. A side effect is that tag plugin {% is also not processed, which is not optimal. User should be able to write {{ in a post regardless it's wrapped in a codeblock or not, without worrying it gets rendered as nunjucks; while at the same time, able to use tag plugin.

@stale
Copy link

stale bot commented Feb 22, 2020

This issue has been automatically marked as stale because lack of recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Feb 22, 2020
@noraj
Copy link
Contributor

noraj commented Feb 22, 2020

unstale

@stale stale bot removed the stale label Feb 22, 2020
@stale
Copy link

stale bot commented Apr 23, 2020

This issue has been automatically marked as stale because lack of recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants