We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3adc32 commit def6982Copy full SHA for def6982
1 file changed
README.md
@@ -45,9 +45,9 @@ Children can also be passed to atoms:
45
46
```twig
47
{% x:my-atom { heading: "Hello world!" } %}
48
- <p>This is my atom</p>
49
- <p>There are many like it, but this is mine</p>
50
- <p>{{ myVariable }}</p>
+ <p>This is my atom</p>
+ <p>There are many like it, but this is mine</p>
+ <p>{{ myVariable }}</p>
51
{% endx %}
52
```
53
@@ -62,8 +62,8 @@ defined.
62
63
{# Contents of `_atoms/my-atom` #}
64
<div>
65
- <h1>{{ heading }}</h1>
66
- {{ children }}
+ <h1>{{ heading }}</h1>
+ {{ children }}
67
</div>
68
69
@@ -73,7 +73,7 @@ Atoms can be nested inside other atoms!
73
74
75
{% x:my-atom %}
76
- {% x:another-atom %}
+ {% x:another-atom %}
77
78
79
0 commit comments