Docs: YARD tags for some resources

This commit is contained in:
Pierre-Olivier Bédard
2022-03-16 10:57:56 -04:00
committed by Shaina Raskas
parent 7357dcf185
commit a77c37db0a
12 changed files with 450 additions and 49 deletions
+12
View File
@@ -35,6 +35,18 @@ module Liquid
super
end
# @public_docs
# @type tag
# @category theme
# @title liquid
# @summary
# Allows you to write multiple tags within one set of delimiters.
# @description
# Use the [`echo`](/api/liquid/tags/theme-tags#echo) tag to output an expression within a `liquid` tag.
# @syntax
# {% liquid
# statement
# %}
private def parse_for_liquid_tag(tokenizer, parse_context)
while (token = tokenizer.shift)
unless token.empty? || token =~ WhitespaceOrNothing