docs: fix code block titles (#5733)

* docs: fix code block titles

* remove console

* fix build error
This commit is contained in:
Shahed Nasser
2023-11-27 16:08:10 +00:00
committed by GitHub
parent de8f748674
commit 547b16ead5
110 changed files with 483 additions and 456 deletions
@@ -62,7 +62,7 @@ Make sure to replace `<YOUR_API_KEY>` with your API Key and `<YOUR_NEWSLETTER_LI
Open `medusa-config.js` and add the new plugin into the `plugins` array:
```js title=medusa-config.js
```js title="medusa-config.js"
const plugins = [
// ...,
{
@@ -123,7 +123,7 @@ To subscribe users to the newsletter without using this API Route or at a specif
Heres an example of using the `mailchimpService` in an API Route:
```ts title=src/api/store/subscribe/route.ts
```ts title="src/api/store/subscribe/route.ts"
import type {
MedusaRequest,
MedusaResponse,
@@ -3943,7 +3943,7 @@ Where `<ORDER_PLACED_TEMPLATE_ID` is the ID of your template for order placed em
Finally, in your `medusa-config.js` file, add the SendGrid plugin into the array of plugins:
```js title=medusa-config.js
```js title="medusa-config.js"
const plugins = [
// ...,
{
@@ -4000,7 +4000,7 @@ You can resolve the SendGrid service to send emails from your custom services or
For example, in an API Route:
```ts title=src/api/store/email/route.ts
```ts title="src/api/store/email/route.ts"
import type {
MedusaRequest,
MedusaResponse,
@@ -78,7 +78,7 @@ npm install medusa-plugin-slack-notification
After that, open `medusa-config.js` and add the new plugin with its configurations in the `plugins` array:
```js title=medusa-config.js
```js title="medusa-config.js"
const plugins = [
// ...,
{
@@ -55,7 +55,7 @@ Make sure to replace `<YOUR_ACCOUNT_SID>`, `<YOUR_AUTH_TOKEN>`, and `<YOUR_TWILI
Finally, add the plugin and its options in the `medusa-config.js` file to the `plugins` array:
```js title=medusa-config.js
```js title="medusa-config.js"
const plugins = [
// ...
{
@@ -85,7 +85,7 @@ For this example to work, you'll need to have an [event bus module](../../develo
Create the file `src/subscriber/sms.ts` in your Medusa backend with the following content:
```ts title=src/subscriber/sms.ts
```ts title="src/subscriber/sms.ts"
import {
type SubscriberConfig,
type SubscriberArgs,