Eduardo Liberato (Eddie) Gosano

Home / A Hero’s Tale Retold / Eduardo Liberato (Eddie) Gosano

Eduardo Liberato Gosano #24299

Birth: 20 December 1914, Hong Kong
Marriage: 26 November 1945, St. Therese, Hong Kong, Adeline Hazell Lang3
Death: 2 November 2010, Eduardo Liberato Gosano passed peacefully on Sunday, November 7, 2010, in San Francisco, California. He is now reunited with the love of his life, Hazel, his wife for 59 years.
Details are in the restricted website with ID #24299
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');