From: "naruse (Yui NARUSE) via ruby-core" Date: 2023-02-10T02:42:45+00:00 Subject: [ruby-core:112321] [Ruby master Feature#19428] Adding a "piped heredoc" feature Issue #19428 has been updated by naruse (Yui NARUSE). I came up with another idea after I read your proposal: ``` options = { name: "My Nice Options", description: <<|, | This is a cool set of options. | You Can put what you like here. details: <<|, | Some more stuff here... | This will only be indented 2 spaces. | And this 4 spaces. | And this 2 spaces again. | Back to the "left" side. ``` ---------------------------------------- Feature #19428: Adding a "piped heredoc" feature https://bugs.ruby-lang.org/issues/19428#change-101766 * Author: shreeve (Steve Shreeve) * Status: Open * Priority: Normal ---------------------------------------- Hello, I hope this is the correct place to post a small feature request. HEREDOC's are awesome! There are several used within Ruby: ```ruby <