From 4827e201607f8ed72fde82e1618ada63cbcf7ffd Mon Sep 17 00:00:00 2001 From: Rahul Garg <3199183+vihu@users.noreply.github.com> Date: Sun, 22 Feb 2026 20:19:42 -0700 Subject: [PATCH 1/2] Add demo section to README Added a demo section with a demo video link. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8248308..d538724 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ Real-time Markdown preview for Neovim with GitHub Flavored Markdown styling. +## Demo + +[penview-demo.webm](https://github.com/user-attachments/assets/bea9d0ef-fc68-4080-acd4-40f77335754d) + ## Features - Live preview updates as you type (no save required) From 87f4c37fb663c485cd7d6cb319a390c32e7150b5 Mon Sep 17 00:00:00 2001 From: Rahul Garg Date: Sun, 22 Feb 2026 20:27:42 -0700 Subject: [PATCH 2/2] fix: clippy lint --- rust/penview/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/penview/src/main.rs b/rust/penview/src/main.rs index c79e19e..f237835 100644 --- a/rust/penview/src/main.rs +++ b/rust/penview/src/main.rs @@ -6,7 +6,7 @@ mod svg_template; use std::path::PathBuf; -use clap::{Parser, command}; +use clap::Parser; use inquire::Confirm; use render::render_doc; use routes::construct_router;