Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ out
.env
extension.js
extension.js.LICENSE.txt
local/
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## Unreleased

- Fixed presentation2 overflow scaling so long text wraps across the full slide width.
- Fixed native tables in presentation2 to use the slide width, inherit the active theme, render complete borders, and hide their duplicate source outline.
- Fixed presentation2 title detection and hidden-block handling after filtering hidden slide children.
- Added a bounded overflow fallback for presentation2 slides that cannot fit at the minimum scale.
- Kept image and iframe source descendants closed while preserving expanded native media layouts.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

Type `{{presentation}}` or `{{slides}}` in a block. Clicking the button will overlay a presentation directly from Roam! Exit the presentation by hitting 'ESC'.

An experimental native-renderer path is available alongside the current
renderer. Use `{{presentation2}}` or `{{slides2}}` to render slide content with
Roam's declarative React APIs while leaving `presentation` and `slides`
unchanged.
<!-- The paired copy/paste baseline and native-component coverage deck are in
[`fixtures`](fixtures/README.md), and the two component trees are documented in
[`docs/native-renderer-architecture.md`](docs/native-renderer-architecture.md). -->

To specify what content is part of the presentation, create a child block for each slide. The text of each child will serve as the slide title. Each child block then in turn renders its children as the slide contents in a bulleted outline. For example, the Playground presentation below uses the following structure:

```
Expand Down
Loading
Loading