mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-16 20:21:01 +01:00
after the last patch for allowing whitespaces in option names, it had a problem with here-docs which contained equal signs. option/value splitting resulted in weird output. - as a side effect of the bug fix below it is now possible to use equal signs inside quoted values, which will then be ignored, thus not used for splitting the line into an option/value assignment. - added a new test, which tests for all possible notations of option/value lines. git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@29 be1acefe-a474-0410-9a34-9b3221f2030f
14 lines
219 B
Groff
14 lines
219 B
Groff
/*
|
|
# Here-document test
|
|
message = <<EOF
|
|
yes. we are not here. you
|
|
can reach us somewhere in
|
|
outerspace.
|
|
# and this line will remain inside the here-doc!
|
|
EOF
|
|
*/
|
|
|
|
header = <<EOF
|
|
<table border="0">
|
|
</table>
|
|
EOF |