Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added reference to use the codesandbox template #4061

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ examples/classic/docusaurus.config.js
examples/classic/sidebars.js
examples/classic/src/pages/index.js
examples/facebook/.eslintrc.js
<<<<<<< HEAD
codesandboxscript.js
=======
>>>>>>> 458bf67484ff840686fa7976b7ed64b560174e45
20 changes: 20 additions & 0 deletions examples/bootstrap/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
18 changes: 18 additions & 0 deletions examples/bootstrap/docs/doc1.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ To serve as an example page when styling markdown based Docusaurus sites.

## Emphasis

<<<<<<< HEAD
Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.
=======
Emphasis, aka italics, with _asterisks_ or _underscores_.

Strong emphasis, aka bold, with **asterisks** or **underscores**.
>>>>>>> 458bf67484ff840686fa7976b7ed64b560174e45

Combined emphasis with **asterisks and _underscores_**.

Expand All @@ -48,11 +54,19 @@ Strikethrough uses two tildes. ~~Scratch this.~~
1. Ordered sub-list
1. And another item.

<<<<<<< HEAD
* Unordered list can use asterisks

- Or minuses

+ Or pluses
=======
- Unordered list can use asterisks

* Or minuses

- Or pluses
>>>>>>> 458bf67484ff840686fa7976b7ed64b560174e45

---

Expand Down Expand Up @@ -92,6 +106,10 @@ Images from any folder can be used by providing path to file. Path should be rel

![img](../static/img/logo.svg)

<<<<<<< HEAD

=======
>>>>>>> 458bf67484ff840686fa7976b7ed64b560174e45
---

## Code
Expand Down
4 changes: 4 additions & 0 deletions examples/bootstrap/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ module.exports = {
url: 'https://your-docusaurus-test-site.com',
baseUrl: '/',
onBrokenLinks: 'throw',
<<<<<<< HEAD
onBrokenMarkdownLinks: 'warn',
=======
>>>>>>> 458bf67484ff840686fa7976b7ed64b560174e45
favicon: 'img/favicon.ico',
organizationName: 'facebook', // Usually your GitHub org/user name.
projectName: 'docusaurus', // Usually your repo name.
Expand Down
Loading