md2googleslides icon indicating copy to clipboard operation
md2googleslides copied to clipboard

error in documentation about code block font sizes

Open jonathan-chin opened this issue 4 years ago • 0 comments

this is in version 1.0.0. currently, the documentation says to put the styling after the code block:

### Hello World

```javascript
console.log('Hello world');
```{style="font-size: 36pt"}

When trying this, all other slides after that one aren't rendered. Instead, the style specification should be added in the opening triple backticks, such as:

### Hello World

```{style="font-size: 36pt"}
console.log('Hello world');
    ```

jonathan-chin avatar Jan 11 '21 09:01 jonathan-chin