Export Answer Pages to Your Website
A comprehensive guide on exporting your Answer Pages and integrating them into any website platform
Quick Overview
Export your Answer Pages in multiple formats to integrate with your website
HTML
Full standalone page ready to upload
JSON-LD Schema
Structured data for AI & SEO
Sources JSON
Machine-readable claims
Sitemap XML
Search engine discovery
Markdown
For documentation sites
Step 1: Open the Export Dialog
- Navigate to your Answer Page by clicking on it from the "Answer Pages" list
- Click the "Export Content" button (with download icon) near the top of the page
- The Export Dialog will open with multiple format tabs
Step 2: Choose Your Export Format
Option A: HTML (Recommended for Most Users)
Best for: WordPress, Webflow, Shopify, Squarespace, Wix, and custom websites
What You Get:
- A complete, self-contained HTML file
- Pre-styled with dark theme matching Your AI Voice branding
- Mobile-responsive design
- Ready to upload and publish immediately
How to Use:
For WordPress:
- Click the HTML tab in the Export Dialog
- Click "Download .html" button
- In WordPress, go to Pages → Add New
- Switch to Code Editor or HTML mode
- Paste or upload the HTML content
- Click Publish
For Webflow:
- Download the HTML file
- In Webflow, create a new Custom Code page
- Paste the HTML content into the page settings
- Publish your site
For Shopify:
- Download the HTML file
- Go to Online Store → Pages → Add Page
- Click Show HTML in the editor
- Paste the HTML content
- Save and publish
For Static Hosting (Netlify, Vercel, GitHub Pages):
- Download the HTML file
- Rename it appropriately (e.g.,
product-name.html) - Upload to your hosting provider or commit to your repository
- Access via:
https://yourdomain.com/product-name.html
For Custom Websites:
- Download the HTML file
- Upload via FTP to your web server (e.g.,
/public_html/answers/) - Access via:
https://yourdomain.com/answers/product-name.html
Option B: JSON-LD Schema (For SEO & AI Optimization)
Best for: Adding structured data to existing pages for better AI and search engine understanding
What You Get:
- Schema.org compliant JSON-LD markup
- Product/Service/Thing types with properties
- FAQ schema if your page includes FAQs
- Recognized by Google, OpenAI, Anthropic, and other AI systems
How to Use:
Method 1: WordPress with Plugin (Easiest)
- Click the JSON-LD tab
- Click "Copy to Clipboard"
- Install a plugin like "Insert Headers and Footers" or "WP Code"
- Paste the JSON-LD code wrapped in script tags
- Save changes
<script type="application/ld+json"> [paste your JSON-LD here] </script>
Method 2: Direct HTML Implementation
- Click "Copy to Clipboard" in the JSON-LD tab
- Open your page's HTML file or template
- In the
<head>section, add the script tag with your JSON-LD - Save and upload
Verify It Works:
- Use Google's Rich Results Test
- Paste your page URL to see recognized schema
- Check for errors and warnings
Option C: Sources JSON (For AI Transparency)
Best for: Machine-readable claim verification and AI assistant citation
What You Get:
- Structured list of claims and their source URLs
- Ownership attribution
- Last updated timestamps
- Citation-ready format
How to Use:
- Click the Sources tab
- Click "Download .json"
- Host the file on your website at a predictable URL
- Update the URLs in the JSON file to point to your actual Answer Pages
- Link to this file from your pages or robots.txt
Option D: Sitemap XML (For Search Engine Discovery)
Best for: Helping search engines and AI crawlers find your Answer Pages
What You Get:
- XML snippet for each Answer Page
- Includes URL, last modified date, change frequency, and priority
How to Use:
For WordPress: Most SEO plugins (Yoast, Rank Math, AIOSEO) auto-generate sitemaps. Your pages will be included automatically once published.
For Custom Sitemaps: Copy the snippet and paste it inside your sitemap.xml file's <urlset> tags, then submit to Google Search Console.
Option E: Markdown (For Documentation Sites)
Best for: GitHub, GitBook, Jekyll, Hugo, Docusaurus, and technical documentation
What You Get:
- Clean markdown-formatted content
- Headings, lists, and proper structure
- Compatible with GitHub README files
How to Use:
For GitHub: Download the .md file and add it to your repository (e.g., docs/product-name.md), then commit and push.
For Documentation Sites: Place in your content directory (e.g., /content/products/), add frontmatter if needed, then build and deploy.
Step 3: Verify Your Integration
✅ Checklist:
- Page loads without errors in browser
- Content is readable and properly formatted
- Mobile responsiveness works (test on phone)
- Links are functional
- Structured data validates in Google Rich Results Test
- Page is included in sitemap
- Page is indexed by search engines (use
site:yourdomain.comsearch)
Testing with AI Assistants:
- Wait 24-48 hours for search engines to crawl
- Ask ChatGPT, Claude, or other AI assistants questions about your product/service
- Check if they cite your Answer Page as a source
- Monitor accuracy of AI-generated responses
Best Practices
✅ DO:
- Export after making changes to keep content updated
- Include JSON-LD schema for maximum AI visibility
- Use descriptive, SEO-friendly URLs
- Keep Answer Pages simple and factual
- Update regularly to maintain freshness signals
- Test on multiple devices and browsers
❌ DON'T:
- Don't hide Answer Pages behind paywalls or login
- Don't use excessive marketing language (AI prefers facts)
- Don't forget to update sitemaps after adding new pages
- Don't mix Answer Pages with unrelated content
- Don't ignore mobile responsiveness
Common Integration Platforms
WordPress
Method: HTML or Page Builder
Difficulty: ⭐ Easy
Shopify
Method: HTML page or theme template
Difficulty: ⭐ Easy
Webflow
Method: Custom Code or Embed
Difficulty: ⭐⭐ Moderate
Wix
Method: HTML iFrame or custom element
Difficulty: ⭐⭐ Moderate
Squarespace
Method: Code Block
Difficulty: ⭐ Easy
Static Site Generators
Method: Markdown or HTML component
Difficulty: ⭐⭐⭐ Advanced
Troubleshooting
Issue: Styles Look Broken
Solution: The HTML export includes inline styles. Make sure your CMS isn't stripping them. Use the "Raw HTML" or "Code View" mode when pasting.
Issue: Schema Not Recognized
Solution: Validate using Google's Rich Results Test. Ensure the JSON-LD is within <script type="application/ld+json"> tags in the <head> section.
Issue: Page Not Indexed by Search Engines
Solution: Verify robots.txt allows crawling, submit sitemap to Google Search Console, request indexing, and wait 24-48 hours.
Issue: AI Assistants Not Citing My Page
Solution: Ensure page is publicly accessible, add JSON-LD schema, include clear factual content, and wait for AI model retraining cycles (can take weeks).