effective-java-3rd-chinese/docs/_style/prism-master/tests/languages/django/property_feature.test
2019-03-14 13:10:17 +08:00

64 lines
1.1 KiB
Plaintext

{% extends "base_generic.html" %}
{% block body %}
<a href="{{ story.get_absolute_url }}">
{{ story.headline|upper }}
</a>
{% endblock %}
----------------------------------------------------
[
["property", [
"{% ",
["keyword", "extends"],
["string", "\"base_generic.html\""],
" %}"
]],
["property", [
"{% ",
["keyword", "block"],
["variable", "body"],
" %}"
]],
["tag", [
["tag", [
["punctuation", "<"],
"a"
]],
["attr-name", ["href=\""]],
["property", [
"{{ ",
["variable", "story"],
["punctuation", "."],
["variable", "get_absolute_url"],
" }}"
]],
["attr-name", ["\""]],
["punctuation", ">"]
]],
["property", [
"{{ ",
["variable", "story"],
["punctuation", "."],
["variable", "headline"],
["keyword", "|"],
["function", "upper"],
" }}"
]],
["tag", [
["tag", [
["punctuation", "</"],
"a"
]],
["punctuation", ">"]
]],
["property", [
"{% ",
["keyword", "endblock"],
" %}"
]]
]
----------------------------------------------------
Checks for properties.