From: "ccmywish (Aoran Zeng) via ruby-core" Date: 2023-05-24T10:47:41+00:00 Subject: [ruby-core:113621] [Ruby master Feature#19688] Add indentable block comment syntax Issue #19688 has been reported by ccmywish (Aoran Zeng). ---------------------------------------- Feature #19688: Add indentable block comment syntax https://bugs.ruby-lang.org/issues/19688 * Author: ccmywish (Aoran Zeng) * Status: Open * Priority: Normal ---------------------------------------- Ruby's default block comment is using `=begin` and `=end` ```ruby =begin Some block comments =end ``` However, we must place them at the top of the line, thus we can't indent them, for example: ```ruby class A class B class C =begin The comment for this method =end def hello end end end end ``` This is something like the situation of `<