summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorImran Khan <42691857+astr0n0mer@users.noreply.github.com>2024-05-13 12:32:44 +0530
committerGitHub <noreply@github.com>2024-05-13 01:02:44 -0600
commitf6f88843aafe9a60569f7b93ae175cfd7281d260 (patch)
tree335f0d65f58401b4cf809326aac83585e4864d24 /de-de
parent47b3e24c005c97bc336031af2f3b5c6b2ecf814a (diff)
[pug/en] Fix style attribute syntax error (#4653)
Diffstat (limited to 'de-de')
-rw-r--r--de-de/pug-de.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/de-de/pug-de.html.markdown b/de-de/pug-de.html.markdown
index ebc32622..e4229622 100644
--- a/de-de/pug-de.html.markdown
+++ b/de-de/pug-de.html.markdown
@@ -84,8 +84,8 @@ div(class=meineKlasse)
//- JS Stil
- const meineStile = {'color':'white', 'background-color':'blue'}
-div(styles=meineStile)
-//- <div styles="{&quot;color&quot;:&quot;white&quot;,&quot;background-color&quot;:&quot;blue&quot;}"></div>
+div(style=meineStile)
+//- <div style="color:white;background-color:blue;"></div>
//- JS Attributte
- const meineAttribute = {"src": "foto.png", "alt": "meine Bilder"}