'.$line[0].'';
}
if (strcmp($line[1], 'Subheading') == 0) { // output a subheading
if (strlen($line[2]) > 2) {
echo '';
} else {
echo ''.$line[0].'';
}
}
if (strcmp($line[1], 'Link') == 0) { // output a link
echo ''.$line[0].' ';
}
if (strcmp($line[1], 'Bare Text') == 0) { // output just the text
echo $line[0];
}
$y++;
}
?>
|