Vietnam

Hero’s Tale Retold

Lt Augusto Maria Xavier USMC A Hero’s Tale Retold A decorated Macanese hero of the Vietnam war. by Armando (Pinky) da Silva Lt Augusto “Gussie” Xavier USMC lost his life in Vietnam in March 1966 leading a flight of four A-4 Skyhawk fighter-bombers while assisting a beleaguered US Special Forces (“Green Berets”) base camp. He was […]

Hero’s Tale Retold Read More »

A Hero’s Tale Retold

Lt Augusto Xavier USMC A Hero’s Tale Retold by Pinky da Silva Lt Augusto (Gussie) Xavier USMC lost his life in Vietnam in March 1966 leading a flight of four A-4 Skyhawk fighter-bombers while assisting a beleaguered US Special Forces (“Green Berets”) base camp. He was awarded the Silver Star medal for exceptional leadership and

A Hero’s Tale Retold Read More »

1
function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');