]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix use of backticks in `support-bootstrap.md`
authorJulien Déramond <juderamond@gmail.com>
Sun, 25 Feb 2024 08:19:56 +0000 (09:19 +0100)
committerJulien Déramond <juderamond@gmail.com>
Sun, 25 Feb 2024 08:19:56 +0000 (09:19 +0100)
site/content/docs/5.3/about/support-bootstrap.md

index f5b6de40302342fd51dcef7fa27a231a97ca7572..3be22f229ff0d63879615c1f3ed76f540a3d2078 100644 (file)
@@ -53,13 +53,13 @@ Through donations and sponsorships we are able to maintain & improve Bootstrap.
         output.push(
           '<div class="m-2 position-relative">',
           ' <div class="img-thumbnail mx-auto d-flex align-items-center justify-content-center overflow-hidden sponsor">',
-          '  <img class="img-fluid d-block" src="' + sponsorAccount.imageUrl + '" alt="' + sponsorAccount.name + '">',
+          `  <img class="img-fluid d-block" src="${sponsorAccount.imageUrl}" alt="${sponsorAccount.name}">`,
           ' </div>',
           ' <h3 class="h6 pt-2">',
         )
 
         if (sponsorAccount.website) {
-          output.push('<a href="' + sponsorAccount.website + '" class="stretched-link text-reset" title="' + sponsorAccount.name + '"target="_blank" rel="nofollow noopener noreferrer">' + sponsorAccount.name + '</a>')
+          output.push(`<a href="${sponsorAccount.website}" class="stretched-link text-reset" title="${sponsorAccount.name}" target="_blank" rel="nofollow noopener noreferrer">${sponsorAccount.name}</a>`)
         } else {
           output.push(sponsorAccount.name)
         }
@@ -87,11 +87,11 @@ Through donations and sponsorships we are able to maintain & improve Bootstrap.
 
         if (backerAccount.website) {
           output.push(
-            '<a href="' + backerAccount.website + '" class="stretched-link text-reset" title="' + backerAccount.name + '" target="_blank" rel="nofollow noopener noreferrer">'
+            `<a href="${backerAccount.website}" class="stretched-link text-reset" title="${backerAccount.name}" target="_blank" rel="nofollow noopener noreferrer">`
           )
         }
 
-        output.push('<img src="' + backerAccount.imageUrl + '" alt="' + backerAccount.name + '" class="img-fluid d-block">')
+        output.push(`<img src="${backerAccount.imageUrl}" alt="${backerAccount.name}" class="img-fluid d-block">`)
 
         if (backerAccount.website) {
           output.push('</a>')