From b25684f98a7e9ce0294fb6b8d498aa305073f572 Mon Sep 17 00:00:00 2001 From: Chi Date: Sun, 29 May 2022 08:48:23 +0500 Subject: [PATCH] Issue #3134193 by Anybody: Update cheat sheet --- docs/cheat-sheet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cheat-sheet.md b/docs/cheat-sheet.md index 18edea1..4615314 100644 --- a/docs/cheat-sheet.md +++ b/docs/cheat-sheet.md @@ -168,12 +168,12 @@ See [rendering blocks with Twig Tweak](blocks.md#block-plugin) for details. ```twig {# Basic usage. #}
- {{ drupal_contextual_links('entity.view.edit_form:view=frontpage&display_id=feed_1:') }} + {{ drupal_contextual_links('entity.view.edit_form:view=frontpage:display_id=feed_1') }} {{ drupal_view('frontpage') }}
{# Multiple links. #}
- {{ drupal_contextual_links('node:node=123|block_content:block_content=123:') }} + {{ drupal_contextual_links('node:node=123:|block_content:block_content=123:') }} {{ content }}
```