Topics T-V

Tea  Secret Recipes of Old Macau – Dr. Pitter’s Famous Tea and the Long-Forgotten Patrício’s Tea

Toponímia de Macau Vol I & II

Imprensa Nacional Macau, 1979. (History of place-names in Macau. In Portuguese)

Treaty Ports  Twentieth Century Impressions of Hong Kong, Shanghai, and other Treaty Ports in China,  Arnold Wright,Ed., Lloyd’s Greater Britain Publishing Company, 1908. A huge and magnificently illustrated book about Europeans on the China coast at the high point of imperialism.

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