HTML タグ属性に改行を含めるにはどうすればよいですか?
例えば:
<a href="somepage.html" onclick="javascript: foo('This is a multiline string.
This is the part after the newline.')">some link</a>
編集: 申し訳ありませんが、悪い例です。タグがたまたま JavaScript にない場合は、次のように言います。
<sometag someattr="This is a multiline string.
This is the part after the newline." />
編集2:文字列の改行は私の問題ではなく、呼び出していたjavascript関数であることがわかりました。FWIW、"
" は HTML 属性の改行に使用できます。