Authors P-R

Jonathan Porter

Macau: The Imaginary City–Culture and Society, 1557 to the Present

Jorge Remedios

Talu A popular children’s game in Macau and Hong Kong
Aunty Albertina’s School, A school for Macanese children in Homantin
Our Bairro, Reminiscences of childhood
Macanese Language

Leonard Rivero

History of Portuguese in Shanghai

Vasco Rocha Vieira

Todos os portos as que cheguei Dec 2010 Pedro Vieira/Gradiva Publicações, S.A. – An important book by the last Portuguese Governor of Macau. There are several chapters on Macau.

Cicero Rozario

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