Topics A

José Luís de Selavisa Alves  The life of an eminent Portuguese, Obituary in The Hongkong Telegraph

João Maria Ferreira Amaral

Amaral and Mesquita by HA d’Assumpção. – His assassination led to a turbulent period when Macau was seriously threatened.

Anglo-Indian words and phrases  Yule, Sir Henry, Hobson-Jobson: A glossary of colloquial Anglo-Indian words and phrases, and of kindred terms, etymological, historical, geographical and discursive. New ed. edited by William Crooke, B.A. London: J. Murray, 1903

Aviation: From Portugal to Macau by H.A. d’Assumpção (an account of a flight from Portugal to Macau in the early days of aviation.

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