"""
if not (format_string[0] == format_string[-1] and format_string[0] in
('"', "'")):
raise template.TemplateSyntaxError, "%r tag's argument should
be in quotes" % tag_name
"""
"""
The token.split_contents() method separates the arguments on spaces
while keeping quoted strings together. The more straightforward
token.contents.split() wouldn't be as robust, as it would naively
split on all spaces, including those within quoted strings. It's a
good idea to always use token.split_contents().
"""