سلام
برای اصلاح تگ کد در فایل استایل "style.css" کلاس کد را به صورت زیر با افزودن "direction: ltr;" به خط آخر اصلاح کنید:
.code
{
color: #000000;
background-color: #eaeada;
font-family: "courier new", "times new roman", monospace;
/* font-size: small;*/
font-size: 10px;
line-height: 1.4em;
/* Put a nice border around it. */
border: 1px solid #000000;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
direction: ltr;
}