Compare commits

...
Author SHA1 Message Date
Andy Waite 965ea3cfb1 WIP 2022-03-14 12:03:47 -04:00
2 changed files with 19 additions and 6 deletions
+8 -1
View File
@@ -22,7 +22,14 @@ module Liquid
)
STRIP_HTML_TAGS = /<.*?>/m
# Return the size of an array or of an string
# @public_docs
# @title Size
# @syntax The syntax
# @summary The summary
# @type filter
# @category My category
# @description
# Return the size of an array or of an string
def size(input)
input.respond_to?(:size) ? input.size : 0
end
+11 -5
View File
@@ -1,14 +1,20 @@
# frozen_string_literal: true
# @public_docs
module Liquid
# Assign sets a variable in your template.
# @public_docs
# @title Assign
# @syntax The syntax
# @summary The summary
# @type tag
# @description
# Assign sets a variable in your template.
#
# {% assign foo = 'monkey' %}
# {% assign foo = 'monkey' %}
#
# You can then use the variable later in the page.
#
# {{ foo }}
# You can then use the variable later in the page.
#
# {{ foo }}
class Assign < Tag
Syntax = /(#{VariableSignature}+)\s*=\s*(.*)\s*/om