Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
No EOL
345 B
Text
16 lines
No EOL
345 B
Text
export default {
|
|
"<" : "<", //tag start
|
|
">" : ">", //tag end
|
|
"/" : "/", //close tag
|
|
"!" : "!", //comment or docttype
|
|
"!--" : "!--", //comment
|
|
"-->" : "-->", //comment end
|
|
"?" : "?", //pi
|
|
"?>" : "?>", //pi end
|
|
"?xml" : "?xml", //pi end
|
|
"![" : "![", //cdata
|
|
"]]>" : "]]>", //cdata end
|
|
"[" : "[",
|
|
"-" : "-",
|
|
"D" : "D",
|
|
} |