518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
|
@ <div class="section">Content Appended</div>
@ <blockquote>
blob_zero(&attach);
if( zMime==0 || strncmp(zMime,"text/", 5)==0 ){
const char *z;
const char *zLn = P("ln");
content_get(ridSrc, &attach);
blob_strip_bom(&attach, 0);
z = blob_str(&attach);
if( zLn ){
output_text_with_line_numbers(z, zLn);
}else{
@ <pre>
@ %h(z)
@ </pre>
|
|
|
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
|
@ <div class="section">Content Appended</div>
@ <blockquote>
blob_zero(&attach);
if( zMime==0 || strncmp(zMime,"text/", 5)==0 ){
const char *z;
const char *zLn = P("ln");
content_get(ridSrc, &attach);
blob_to_utf8_no_bom(&attach, 0);
z = blob_str(&attach);
if( zLn ){
output_text_with_line_numbers(z, zLn);
}else{
@ <pre>
@ %h(z)
@ </pre>
|