सामान्य इनलाइन <code>
उपयोग के लिए:
<code>...</code>
और प्रत्येक और हर जगह के लिए जहां अवरुद्ध <code>
उपयोग की आवश्यकता है
<code style="display:block; white-space:pre-wrap">...</code>
वैकल्पिक रूप से, <codenza>
ब्रेक अस्तर ब्लॉक <code>
(कोई वर्ग नहीं) के लिए एक टैग को परिभाषित करें
<script>
</script>
<style>
codenza, code {} /* noop mnemonic aide that codenza mimes code tag */
codenza {display:block;white-space:pre-wrap}
</style>`
परीक्षण: (NB: निम्नलिखित data:
URI प्रोटोकॉल / योजना का उपयोग करने वाला एक डरावना है , इसलिए परीक्षण के लिए URL बार में कट और पेस्ट किए जाने पर %0A
nl प्रारूप कोड आवश्यक होते हैं जैसे - view-source:
( ctrl-U ) नीचे दी गई प्रत्येक पंक्ति को अच्छी तरह से देख सके %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>