To address the issue with unsupported HTML tags in your `facts` section, you'll need to remove or replace any HTML elements that are not supported. Here's a revised version of your JSON data without those tags:
```json
{
"identity": {
"name": "Xiamen Bell and Drum Cableway",
"description": "A 40-minute journey through the clouds, offering panoramic views of the mountains and sea, and perfect for watching the sunset.",
"slug": "xiamen-bell-and-drum-cableway-a-40-minute-journey-through-the-clouds-offering-panoramic-views-of-the-mountains-and-sea-and-perfect-for-watching-the-sunset"
},
"meta_data": {
"source": "Traviia, Xiamen Bell and Drum Cableway",
"category": "CATEGORY_011",
"summary": "β
A blend of nature and culture: Wander through natural forests, explore war tunnels and wind-blown boulders, and explore in a historical atmosphere."
},
"facts": {
"visitor_experience": [
{
"text": "β
Panoramic View from Above: 360Β° overlooking the Botanical Garden, gazing at Gulangyu Island and the Twin Towers in the distance, and enjoying breathtaking sunset views over Xiamen's mountains and sea.",
"source_field": "info",
"kind": "feature"
},
{
"text": "β
A blend of nature and culture: Wander through natural forests, explore war tunnels and wind-blown boulders, and explore in a historical atmosphere.",
"source_field": "info",
"kind": "feature"
},
{
"text": "β
Comfortable and efficient travel: 82 gondolas reduce queues, and the entire 40-minute tour is a relaxing experience, perfect for families and couples.",
"source_field": "info",
"kind": "feature"
}
],
"location_details": [
{
"text": "β
Prime location in the city: Adjacent to the botanical garden, with convenient transportation and easy access to major attractions.",
"source_field": "info",
"kind": "location"
},
{
"text": "β
Panoramic views encompassing mountains, sea, and city.",
"source_field": "description",
"kind": "location"
},
{
"text": "β
Located in the heart of the city, with convenient transportation access.",
"source_field": "description",
"kind": "location"
}
],
"general_information": [
{
"text": "Located on the west side of the 5A-level botanical garden, take a 40-minute immersive tour by high-altitude cable car, overlook the botanical garden, and enjoy distant views of Gulangyu Island and the Twin Towers, accessing the stunning scenery of Xiamen from a bird's-eye view.",
"source_field": "description",
"kind": "general"
},
{
"text": "The cable car is about 1,000 meters long and offers a 360Β° panoramic view from the air. You can overlook the lush forests of Wanshi Botanical Garden and enjoy a panoramic view of Gulangyu Island, Shimao Twin Towers, and Xiamen seascape.",
"source_field": "description",
"kind": "general"
},
{
"text": "On a clear day, you can also see Sandan, Sidan, and Wudan in Taiwan. Enjoy the scenery of Xiamen Island in one stop.",
"source_field": "description",
"kind": "general"
}
]
}
}
```
### Key Changes:
- Removed unsupported HTML tags like `
`, `
`, `
`, and ``.
- Converted bullet points into plain text.
- Ensured all content is in a format that can be easily parsed without requiring HTML interpretation.
This should make your JSON data compatible with systems that do not support HTML tags.