Skip to content

Commit 2c299f9

Browse files
committed
fixed layout issues with blockquotes
1 parent e5ba62f commit 2c299f9

20 files changed

+4115
-489
lines changed

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "pwa-node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": ["<node_internals>/**"],
12+
"program": "${file}"
13+
}
14+
]
15+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cmake.configureOnOpen": false
3+
}

.vscode/vscode-profile-2021-03-27-17-04-39.cpuprofile

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ You can [create a site](https://app.stackbit.com/create?theme=https://github.com
5555

5656
npx @stackbit/stackbit-pull --stackbit-pull-api-url=https://api.stackbit.com/pull/60323df295aa610015b59f66 --stackbit-api-key=STACKBIT_API_KEY
5757

58-
5958
1. Start the Gatsby local development server:
6059

6160
npm run develop

gatsby-config.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,23 @@ module.exports = {
99
`gatsby-plugin-advanced-sitemap`,
1010
`gatsby-plugin-react-helmet`,
1111
`gatsby-source-data`,
12-
`gatsby-transformer-remark`,
12+
`gatsby-plugin-sharp`,
13+
{
14+
resolve: `gatsby-transformer-remark`,
15+
options: {
16+
plugins: [
17+
{
18+
resolve: `gatsby-remark-images`,
19+
options: {
20+
// It's important to specify the maxWidth (in pixels) of
21+
// the content container as this plugin uses this as the
22+
// base for generating different widths of each image.
23+
maxWidth: 1200,
24+
},
25+
},
26+
],
27+
},
28+
},
1329
{
1430
resolve: `gatsby-source-filesystem`,
1531
options: {

index.html

Whitespace-only changes.

main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('js is created');

0 commit comments

Comments
 (0)