diff --git a/doc-src/HAML_REFERENCE.md b/doc-src/HAML_REFERENCE.md index be5fcf8f..7feca573 100644 --- a/doc-src/HAML_REFERENCE.md +++ b/doc-src/HAML_REFERENCE.md @@ -1162,19 +1162,18 @@ should end wit `|`.** For example: %whoo - %hoo I think this might get | - pretty long so I should | - probably make it | - multiline so it doesn't | - look awful. | + %hoo= h( | + "I think this might get " + | + "pretty long so I should " + | + "probably make it " + | + "multiline so it doesn't " + | + "look awful.") | %p This is short. is compiled to: - - I think this might get pretty long so I should probably make it multiline so it doesn't look awful. - + I think this might get pretty long so I should probably make it multiline so it doesn't look awful.

This is short