Draft
Add independent Jupyter (.ipynb) presentation output with RISE metadata#38
Conversation
Agent-Logs-Url: https://github.com/bsstahl/LiquidVictor/sessions/32f922b7-e4a3-46c3-b7c9-22403be5cabd Co-authored-by: bsstahl <8053235+bsstahl@users.noreply.github.com>
Agent-Logs-Url: https://github.com/bsstahl/LiquidVictor/sessions/32f922b7-e4a3-46c3-b7c9-22403be5cabd Co-authored-by: bsstahl <8053235+bsstahl@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add functionality to build presentations in Jupyter notebooks
Add independent Jupyter (.ipynb) presentation output with RISE metadata
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a new Jupyter output path so presentations can be exported as
.ipynbnotebooks suitable for slideshow workflows (including RISE-style metadata).Implementation follows the existing output architecture while keeping Jupyter output fully separate from RevealJS code.
New Jupyter output projects
LiquidVictor.Output.Jupyter(shared Jupyter output types/extensions)LiquidVictor.Output.Jupyter.Generator(notebook builder implementingIPresentationBuilder)LiquidVictor.Output.Jupyter.Test(focused unit coverage)LiquidVictor.slnNotebook generation engine (
OutputEngineType=JUPYTER)LV/ServiceCollectionExtensionsto resolve the new engine whenOutputEngineTypeisJUPYTER.ipynbdocument (nbformat: 4,nbformat_minor: 5)metadata.slideshow.slide_typeliverevealmetadata (theme/transition/autolaunch)BuilderOptions.BuildTitleSlideslide_type: "notes")Content handling
NotSupportedExceptionProject wiring updates
src/LV/LV.csproj.ipynbexport supportExample of the generated notebook structure:
{ "cells": [ { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": ["# First Slide\n", "\n", "Body markdown\n"] } ], "metadata": { "livereveal": { "autolaunch": false, "theme": "Black", "transition": "Slide" } }, "nbformat": 4, "nbformat_minor": 5 }