Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Liquid Exception: Liquid syntax error (line 17): Unknown tag 't' #142

Closed
faziloub opened this issue Jul 17, 2019 · 2 comments
Closed

Liquid Exception: Liquid syntax error (line 17): Unknown tag 't' #142

faziloub opened this issue Jul 17, 2019 · 2 comments

Comments

@faziloub
Copy link

faziloub commented Jul 17, 2019

i have installed the plugin in my site and created folder _18n and added en.yml and included the {% t global.english %} its doesnt recognize the t tag in jekyll 3.8.5

@faziloub
Copy link
Author

nvm its works i used bundle install --force

@pbatard
Copy link

pbatard commented Mar 27, 2021

For those who come to this issue and find that bundle install --force does not help, another thing you want to make sure is that you added the gem "jekyll-multiple-languages-plugin" line inside the following section in your Gemfile:

group :jekyll_plugins do
  (...)
end

For instance, this will work as expected:

group :jekyll_plugins do
  gem "jekyll-feed", "~> 0.12"
  gem "jekyll-multiple-languages-plugin"
end

Whereas this will produce the dreaded Liquid syntax error (line ##): Unknown tag 't':

group :jekyll_plugins do
  gem "jekyll-feed", "~> 0.12"
end

gem "jekyll-multiple-languages-plugin"

At least, that's what did the trick for me...

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants