From b639d2e9ad0200ee4cc825bc94af2e4de30fb8e9 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Tue, 29 Oct 2019 06:03:23 +1000 Subject: [PATCH] Fix case of GitHub, GitLab, JavaScript, TypeScript and WordPress. --- docs/blog/2019-10-15-free-headless-cms/index.md | 2 +- docs/docs/recipes.md | 2 +- docs/sites.yml | 2 +- docs/starters.yml | 6 +++--- examples/using-wordpress-with-acf/package.json | 2 +- examples/using-wordpress/README.md | 2 +- examples/using-wordpress/gatsby-config.js | 6 +++--- examples/using-wordpress/package.json | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/blog/2019-10-15-free-headless-cms/index.md b/docs/blog/2019-10-15-free-headless-cms/index.md index 20dbea0959df6..4d8fae9b7cb03 100644 --- a/docs/blog/2019-10-15-free-headless-cms/index.md +++ b/docs/blog/2019-10-15-free-headless-cms/index.md @@ -48,7 +48,7 @@ So, as long as the host is reputable, and the service is secure, you can buy the ## Option #2. Netlify CMS -Netlify created a free headless CMS modeled after open source projects like WordPress and Drupal, so JAMstack sites would have options beyond SaaS CMS’s. [Netlify CMS](https://www.netlifycms.org/) cleverly uses cloud git services like GitHub and Gitlab as the backend for your content, and claims to work with almost any static site generator, including Gatsby. +Netlify created a free headless CMS modeled after open source projects like WordPress and Drupal, so JAMstack sites would have options beyond SaaS CMS’s. [Netlify CMS](https://www.netlifycms.org/) cleverly uses cloud git services like GitHub and GitLab as the backend for your content, and claims to work with almost any static site generator, including Gatsby. ### How “free” is it? diff --git a/docs/docs/recipes.md b/docs/docs/recipes.md index 18bb8285c9752..0714fe55f4601 100644 --- a/docs/docs/recipes.md +++ b/docs/docs/recipes.md @@ -1061,7 +1061,7 @@ export const pageQuery = graphql` ` ``` -4. Create dynamic pages for your Wordpress posts by pasting the following sample code in `gatsby-node.js`: +4. Create dynamic pages for your WordPress posts by pasting the following sample code in `gatsby-node.js`: ```JS:title=gatsby-node.js const path = require(`path`) diff --git a/docs/sites.yml b/docs/sites.yml index 69e68a8708a9b..e44837fd69fff 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -7853,7 +7853,7 @@ main_url: https://enbonnet.me/ source_url: https://github.com/enbonnet description: > - Hola, este es mi sitio personal, estare escribiendo sobre Javascript, Frontend y Tecnologia que utilice en mi dia a dia. + Hola, este es mi sitio personal, estare escribiendo sobre JavaScript, Frontend y Tecnologia que utilice en mi dia a dia. categories: - Portfolio - Blog diff --git a/docs/starters.yml b/docs/starters.yml index 0986aa9d8f658..c00e77f3a1a7a 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -3912,7 +3912,7 @@ - Portfolio - Styling:SCSS features: - - Typescript for type-safe code + - TypeScript for type-safe code - Source content from WordPress CMS - Auto generated Pagination for your WordPress Posts - Auto generated Navigation for next and previous post at the end Post @@ -4052,7 +4052,7 @@ features: - Minumum changes based on default starter template for TypeScript and PWA - Added TypeScript support with eslint and tsc check - - Support Github Actions CI/CD workflow (beta) + - Support GitHub Actions CI/CD workflow (beta) - url: https://iceberg-gatsby-multilang.netlify.com/ repo: https://github.com/diogorodrigues/iceberg-gatsby-multilang description: Gatsby multi-language starter. Internationalization / i18n without third party plugins or packages for Posts and Pages. Different URLs dependending on the language. Focused on SEO, PWA, Image Optimization, Styled Components and more. This starter is also integrate with Netlify CMS to manage all pages, posts and images. @@ -4118,7 +4118,7 @@ - React Hooks (IntersectionObserver, KeyUp, LocalStorage) - url: https://friendly-cray-96d631.netlify.com/ repo: https://github.com/PABlond/Gatsby-TypeScript-Starter-Blog - description: Project boilerplate of a blog app. The starter was built using Gatsby and Typescript. + description: Project boilerplate of a blog app. The starter was built using Gatsby and TypeScript. tags: - Markdown - Language:TypeScript diff --git a/examples/using-wordpress-with-acf/package.json b/examples/using-wordpress-with-acf/package.json index cb9ca817248cc..344388e54415d 100644 --- a/examples/using-wordpress-with-acf/package.json +++ b/examples/using-wordpress-with-acf/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-example-using-wordpress-with-acf", "private": true, - "description": "Gatsby example site using the Wordpress source plugin and Advanced Custom Fields", + "description": "Gatsby example site using the WordPress source plugin and Advanced Custom Fields", "version": "1.0.0-beta.6", "author": "Sebastien Fichot ", "dependencies": { diff --git a/examples/using-wordpress/README.md b/examples/using-wordpress/README.md index fdba4fa8fc5b3..99d3ff8894395 100644 --- a/examples/using-wordpress/README.md +++ b/examples/using-wordpress/README.md @@ -1,5 +1,5 @@ # Using WordPress -This is an example which contains sample code for demonstrating how to source data from Wordpress using the [gatsby-source-wordpress plugin](https://www.gatsbyjs.org/packages/gatsby-source-wordpress/). This example is not a starter or working site. It is meant for the purpose of learning and contains code that cannot be included in the recipe itself. This example is created to serve as an extension to the example code provided in the Sourcing from Wordpress recipe in the Sourcing data section. +This is an example which contains sample code for demonstrating how to source data from WordPress using the [gatsby-source-wordpress plugin](https://www.gatsbyjs.org/packages/gatsby-source-wordpress/). This example is not a starter or working site. It is meant for the purpose of learning and contains code that cannot be included in the recipe itself. This example is created to serve as an extension to the example code provided in the Sourcing from Wordpress recipe in the Sourcing data section. IMPORTANT NOTE: This example site won't keep working if you switch the WordPress site to one of yours. It's meant as a learning resource. Try starting from scratch with a site created by `gatsby new` and start copying over parts from this site starting with `gatsby-config.js`. diff --git a/examples/using-wordpress/gatsby-config.js b/examples/using-wordpress/gatsby-config.js index 0b1c79ccfdcf9..abd0ea3e843d0 100644 --- a/examples/using-wordpress/gatsby-config.js +++ b/examples/using-wordpress/gatsby-config.js @@ -1,14 +1,14 @@ module.exports = { siteMetadata: { - title: `An example to learn how to source data form Wordpress`, - subtitle: `Sourcing data from Wordpress`, + title: `An example to learn how to source data form WordPress`, + subtitle: `Sourcing data from WordPress`, }, plugins: [ { resolve: `gatsby-source-wordpress`, options: { /* - * The base URL of the Wordpress site without the trailingslash and the protocol. This is required. + * The base URL of the WordPress site without the trailingslash and the protocol. This is required. * Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com' */ baseUrl: `example.wordpress.com`, diff --git a/examples/using-wordpress/package.json b/examples/using-wordpress/package.json index 68b30a4fac22f..f97407af8ab29 100644 --- a/examples/using-wordpress/package.json +++ b/examples/using-wordpress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-example-sourcing-wordpress", "private": true, - "description": "An example to learn how to source data form Wordpress", + "description": "An example to learn how to source data form WordPress", "version": "0.1.0", "author": "Vishwa Mehta ", "dependencies": {