├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── _config.yml ├── package.json ├── postcss.config.js ├── public ├── index.html ├── manifest.json └── rsd-icon.ico ├── src ├── core │ ├── JSONLD.js │ ├── JSONLDAbstractNode.js │ ├── index.js │ └── schemas │ │ ├── AggregateRating.js │ │ ├── Answer.js │ │ ├── Author.js │ │ ├── Generic.js │ │ ├── GenericCollection.js │ │ ├── Graph.js │ │ ├── ItemReviewed.js │ │ ├── Location.js │ │ ├── Product.js │ │ ├── Question.js │ │ ├── Rating.js │ │ ├── Review.js │ │ ├── Reviews.js │ │ └── index.js ├── example │ ├── Main.css │ ├── Main.js │ ├── containers │ │ ├── Example.js │ │ ├── Example.scss │ │ └── TextExamples.js │ └── rsd-logo.svg ├── index.css ├── index.js └── registerServiceWorker.js └── webpack.config.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/_config.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/rsd-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/public/rsd-icon.ico -------------------------------------------------------------------------------- /src/core/JSONLD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/JSONLD.js -------------------------------------------------------------------------------- /src/core/JSONLDAbstractNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/JSONLDAbstractNode.js -------------------------------------------------------------------------------- /src/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/index.js -------------------------------------------------------------------------------- /src/core/schemas/AggregateRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/AggregateRating.js -------------------------------------------------------------------------------- /src/core/schemas/Answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Answer.js -------------------------------------------------------------------------------- /src/core/schemas/Author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Author.js -------------------------------------------------------------------------------- /src/core/schemas/Generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Generic.js -------------------------------------------------------------------------------- /src/core/schemas/GenericCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/GenericCollection.js -------------------------------------------------------------------------------- /src/core/schemas/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Graph.js -------------------------------------------------------------------------------- /src/core/schemas/ItemReviewed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/ItemReviewed.js -------------------------------------------------------------------------------- /src/core/schemas/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Location.js -------------------------------------------------------------------------------- /src/core/schemas/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Product.js -------------------------------------------------------------------------------- /src/core/schemas/Question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Question.js -------------------------------------------------------------------------------- /src/core/schemas/Rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Rating.js -------------------------------------------------------------------------------- /src/core/schemas/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Review.js -------------------------------------------------------------------------------- /src/core/schemas/Reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/Reviews.js -------------------------------------------------------------------------------- /src/core/schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/core/schemas/index.js -------------------------------------------------------------------------------- /src/example/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/Main.css -------------------------------------------------------------------------------- /src/example/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/Main.js -------------------------------------------------------------------------------- /src/example/containers/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/containers/Example.js -------------------------------------------------------------------------------- /src/example/containers/Example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/containers/Example.scss -------------------------------------------------------------------------------- /src/example/containers/TextExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/containers/TextExamples.js -------------------------------------------------------------------------------- /src/example/rsd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/example/rsd-logo.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentaylor2/react-structured-data/HEAD/webpack.config.js --------------------------------------------------------------------------------