Skip to content

Commit

Permalink
Merge pull request #1800 from endojs/markm-markup-which-language
Browse files Browse the repository at this point in the history
docs: identify language in some markdown blocks
  • Loading branch information
erights authored Oct 3, 2023
2 parents ceabe62 + efa4821 commit 877be98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Initial setup

```
```sh
git clone [email protected]:endojs/endo.git
cd endo
yarn
Expand Down
13 changes: 4 additions & 9 deletions packages/eslint-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Endo-specific plugin

You'll first need to install [ESLint](http://eslint.org):

```
$ npm i eslint --save-dev
```sh
npm i eslint --save-dev
```

Next, install `@endo/eslint-plugin`:

```
$ npm install @endo/eslint-plugin --save-dev
```sh
npm install @endo/eslint-plugin --save-dev
```

**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `@endo/eslint-plugin` globally.
Expand Down Expand Up @@ -52,8 +52,3 @@ You can configure individual rules you want to use under the rules section.
## Supported Rules

* Fill in provided rules here





4 changes: 2 additions & 2 deletions packages/marshal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ be expressed directly in JSON. These special values are usually strings with
reserved prefixes in the preferred "smallcaps" encoding, but in the original
encoding were objects with a property named `@qclass`. For example:

```
```js
import '@endo/init';
import { makeMarshal } from '@endo/marshal';

Expand Down Expand Up @@ -104,7 +104,7 @@ will be used as the slot identifier to be placed into the slots array, and the
serialized `body`, in place of the object, will contain a special value
referencing that slot identifier by its index in the slots array. For example:

```
```js
import '@endo/init';
import { makeMarshal } from '@endo/marshal';

Expand Down
2 changes: 1 addition & 1 deletion packages/ses/package.json.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ A pragma can be used in any JavaScript file to import the global type
definitions from SES into environments that assume SES has been initialized and
do not directly import the shim.

```
```js
/// <reference types="ses"/>
```

Expand Down

0 comments on commit 877be98

Please sign in to comment.