If you're using a static site generator likeVuePress 2and want to use these components inside your Markdown files, you should use them with PascalCase names: This is the recommended approach due to how VuePress renders Markdown and HTML inside Markdown files. It doesn't recognize<discord-mes...
ServiceStack's JSON & JSV serializers arecase-insensitive(i.e. supports both camelCase and PascalCase properties) and the 1-line below (already included in most Example templates) emits idiomatic camelCase JSON output: ServiceStack.Text.JsConfig.EmitCamelCaseNames = true; They're bothvery resilien...