Đối với <code>
sử dụng nội tuyến bình thường :
<code>...</code>
và cho mỗi và mọi nơi <code>
cần sử dụng
<code style="display:block; white-space:pre-wrap">...</code>
Ngoài ra, xác định một <codenza>
thẻ để phá vỡ khối lót <code>
(không có lớp)
<script>
</script>
<style>
codenza, code {} /* noop mnemonic aide that codenza mimes code tag */
codenza {display:block;white-space:pre-wrap}
</style>`
Kiểm tra: (NB: sau đây là một scURIple sử dụng một data:
giao thức URI / chương trình, do đó %0A
mã định dạng nl là rất cần thiết trong việc giữ gìn như vậy khi cắt và dán vào thanh URL để thử nghiệm - vì vậy view-source:
( ctrl- U) có vẻ tốt preceed mỗi dòng dưới đây với %0A
)
data:text/html;charset=utf-8,<html >
<script>document.write(window.navigator.userAgent)</script>
<script></script>
<style>
codenza, code {} /* noop mnemonic aide that codenza mimes code tag */
codenza {display:block;white-space:pre-wrap}
</style>
<p>First using the usual <code> tag
<code>
%0A function x(arghhh){
%0A return "a very long line of text that will extend the code beyond the boundaries of the margins, guaranteed for the most part, well maybe without you as a warrantee (except in abnormally conditioned perverse environs in which case a warranty is useless)"
%0A }
</code>
and then
<p>with the tag blocked using pre-wrapped lines
<code style=display:block;white-space:pre-wrap>
%0A function x(arghhh){
%0A return "a very long line of text that will extend the code beyond the boundaries of the margins, guaranteed for the most part, well maybe without you as a warrantee (except in abnormally conditioned perverse environs in which case a warranty is useless)"
%0A }
</code>
<br>using an ersatz tag
<codenza>
%0A function x(arghhh){
%0A return "a very long line of text that will extend the code beyond the boundaries of the margins, guaranteed for the most part, well maybe without you as a warrantee (except in abnormally conditioned perverse environs in which case a warranty is useless)"
%0A }
</codenza>
</html>