সাধারণ ইনলাইনড <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>`
পরীক্ষা করা: (এনবি: নীচে একটি data:
ইউআরআই প্রোটোকল / স্কিম ব্যবহার করে একাধিক স্কুরাল দেওয়া হয়েছে , সুতরাং পরীক্ষার জন্য ইউআরএল বারে কাটা এবং আটকানো হলে সংরক্ষণ করার জন্য %0A
এনএল ফর্ম্যাট কোডগুলি অত্যাবশ্যক - সুতরাং 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>