Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to TwigQI in docs "You might also be interested in" section #4412

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion doc/templates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ You might also be interested in:
* `Twig Language Server`_: provides some language features like syntax
highlighting, diagnostics, auto complete, ...

* `TwigQI`_: an extension which analyzes your templates for common bugs during compilation.
drjayvee marked this conversation as resolved.
Show resolved Hide resolved

* `TwigStan`_: a static analyzer for Twig templates powered by PHPStan

Variables
---------

Expand Down Expand Up @@ -597,7 +601,7 @@ exist:
* ``\x``: Hexadecimal escape sequence
* ``\0`` to ``\377``: Octal escape sequences representing characters
* ``\``: Backslash

When using single-quoted strings, the single quote character (``'``) needs to be escaped with a backslash (``\'``).
When using double-quoted strings, the double quote character (``"``) needs to be escaped with a backslash (``\"``).

Expand Down Expand Up @@ -1134,6 +1138,8 @@ Twig can be extended. If you want to create your own extensions, read the
.. _`regular expressions`: https://www.php.net/manual/en/pcre.pattern.php
.. _`PHP-twig for atom`: https://github.com/reesef/php-twig
.. _`TwigFiddle`: https://twigfiddle.com/
.. _`TwigQI`: https://github.com/alisqi/TwigQI
.. _`TwigStan`: https://github.com/twigstan/twigstan
.. _`Twig pack`: https://marketplace.visualstudio.com/items?itemName=bajdzis.vscode-twig-pack
.. _`Modern Twig`: https://marketplace.visualstudio.com/items?itemName=Stanislav.vscode-twig
.. _`Twig Language Server`: https://github.com/kaermorchen/twig-language-server/tree/master/packages/language-server
Expand Down