Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MartenBE committed Sep 27, 2023
1 parent b78a4c5 commit 5efed74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@ Markdown files. They'll be picked up automatically. Example:

### Reveal.js Options

Define Reveal.js [options][37] in a `reveal.json` file at the project root.
They'll be picked up automatically. Example:
Define Reveal.js [options][37] in a `reveal.json` file at the project root. They'll be picked up automatically. Example:

```json
{
Expand Down
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module.exports.getThemeUrl = (theme, assetsDir, base) => {
const revealTheme = revealThemes.find(
themePath => path.basename(themePath).replace(path.extname(themePath), '') === theme
);
return (revealTheme ? `${base || ''}/${revealTheme}` : getAssetPath(theme, assetsDir, base));
return revealTheme ? `${base || ''}/${revealTheme}` : getAssetPath(theme, assetsDir, base);
}
};

Expand Down

0 comments on commit 5efed74

Please sign in to comment.