diff --git a/docs/_docs/plugins/filters.md b/docs/_docs/plugins/filters.md index a6237da4..7f9b49d2 100644 --- a/docs/_docs/plugins/filters.md +++ b/docs/_docs/plugins/filters.md @@ -23,8 +23,8 @@ Liquid::Template.register_filter(Jekyll::AssetFilter)
Jekyll lets you access the site
object through the
- context.registers
feature of Liquid at context.registers[:site]
. For example, you can
+ @context.registers
feature of Liquid at @context.registers[:site]
. For example, you can
access the global configuration file _config.yml
using
- context.registers[:site].config
.
+ @context.registers[:site].config
.