Articles

Articles – History

Articles on History This section of the library provides a selection of articles. Names of authors are listed alphabetically in the Portuguese manner (e.g., da Silva appears under “S” for Silva) Bernardino de Senna Fernandes “Riri” d’Assumpção The Shroud – A ghost story recounted to generations of Macanese. The Burial at Sea – A cautionary […]

Articles – History Read More »

Escape from Shamshuipo Camp

Escape from Shamshuipo Camp January 1942 by Joyce Osmund Van Langenberg “Shit!”  swore aloud. “What kind of crap place is this?” He gazed in disgust at the devastation around him. In peacetime Shamshuipo Barracks provided amenable accommodation for thousands of men particularly from The 1st Battalion, the Middlesex Regiment. More comfortable than most barracks, it was

Escape from Shamshuipo Camp 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');