Glossary Category:

Philippe Yvanovich

Philippe António Yvanovich #2679 Birth: 12 August 1921, Rosary Church, Hong Kong4 Marriage: 1 October 1949, Rosary Church, Hong Kong, Margarida Maria Teresa Alves Death: 11 January 2011, Canberra, Australia Details are in the restricted website #2679

Philippe Yvanovich Read More »

Philothea de Souza Lubeck

Felícia Filoteia da Silva e Sousa Lubeck #6427 Birth: 1859, Cathedral, Hong Kong5 Marriage: 7 February 1874, Cathedral, Hong Kong, Esterbino Fortunato da Fonseca No children Marriage: 4 November 1882, Sacred Heart, Shanghai, Henrique Carlos Lubeck Death: 1893, Shanghai, Died of smallpox. Details are in the restricted website with ID #6427

Philothea de Souza Lubeck Read More »

Pito Yvanovich

Birth: 13 January 1887, Cathedral, Hong Kong Marriage: 7 November 1915, Rosary Church, Hong Kong, Palmira Augusta Lopes Death: 6 February 1944, Stanley Prison, Hong Kong, Tortured by the Japanese Secret Police (Kempetei), accused of working for the British Secret Service. Details are in the restricted website: Already logged in? Register or login?

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