Issue #3321492: Replace README.txt with README.md
4 unresolved threads
4 unresolved threads
Merge request reports
Activity
- README.md 0 → 100644
18 - Information for developers 19 - Maintainers 20 21 22 ## Requirements 23 24 This module requires no modules outside of Drupal core. 25 26 27 ## Installation 28 29 Install as you would normally install a contributed Drupal module. For further 30 information, see 31 [Installing Drupal Modules](https://www.drupal.org/docs/extending-drupal/installing-drupal-modules). 32 33 - README.md 0 → 100644
44 45 Without this module one can use: 46 47 `headline: content.field_band_headline|render|striptags|trim,` 48 49 This is problematic due to the double rendering involved. So if the headline were `Foos&Bars` for example, it would render as `Foos&Bars`. 50 51 Another alternative is using the field data directly from Twig. 52 53 `headline: node.field_band_headline['#items'][0].value` 54 55 This can lead to security problems as the user input data is not properly sanitized by the input filters in the render pipeline. 56 57 ## Maintainers 58 59 Supporting by: changed this line in version 5 of the diff
added 6 commits
-
8359fa64...1ad94c17 - 5 commits from branch
project:1.x
- 7de0619e - Merge branch nomarkup:1.x into 1.x
-
8359fa64...1ad94c17 - 5 commits from branch
added 1 commit
- 1379cf41 - Improved formatting; added content to an empty section
added 1 commit
- 98b86969 - Corrected the module name used in the README.md file; slightly improved the text formatting
added 1 commit
- c982334e - Added the missing periods at the end of two sentences
- README.md 0 → 100644
23 ## Requirements 24 25 This module requires no modules outside of Drupal core. 26 27 28 ## Installation 29 30 Install as you would normally install a contributed Drupal module. For further 31 information, see 32 [Installing Drupal Modules](https://www.drupal.org/docs/extending-drupal/installing-drupal-modules). 33 34 35 ## Configuration 36 37 The module does not have its own menus. The module implements a Views style 38 plugin to display rows without any additional markup. - README.md 0 → 100644
30 Install as you would normally install a contributed Drupal module. For further 31 information, see 32 [Installing Drupal Modules](https://www.drupal.org/docs/extending-drupal/installing-drupal-modules). 33 34 35 ## Configuration 36 37 The module does not have its own menus. The module implements a Views style 38 plugin to display rows without any additional markup. 39 40 ## Usage 41 42 Use this module to remove all the cruft without weakening the site security. 43 Edit the display mode and remove the field markup for field_band_headline and 44 field_band_subheader. content.field_band_headline will now contain only the 45 field value, without the wrapping markup.
Please register or sign in to reply