Braga

Unexampled Calamity

‘An Unexampled Calamity’ The Hong Kong Plague of 1894 by Stuart Braga Article originally published in Casa de Macau Australia Bulletin ‘Without exaggeration I may assert that so far as trade and commerce are concerned the plague has assumed the importance of an unexampled calamity. So stated the dispatch of the Governor of Hong Kong,

Unexampled Calamity Read More »

Monte Fort

MONTE FORT by Dr Stuart Braga Originally published in Casa de Macau Australia News, April 2014, Vol 27 Issue 3 You step onto the escalator taking you up into the Macau Museum and you glide past an ancient wall that looks as though it has always been there. Once inside, you see a fine display

Monte Fort 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');