themed-markdown
v0.1.82
Published
Industry-themed markdown renderer with presentation capabilities
Maintainers
Readme
themed-markdown
Industry-themed markdown renderer with presentation capabilities.
Features
- 🎨 Beautiful industry-themed styling
- 📊 Mermaid diagram support
- 🎯 Presentation mode with slide navigation
- 🌓 Dark/light theme support
- 📱 Responsive design
- ⚡ Built with React and TypeScript
Installation
npm install themed-markdown
# or
yarn add themed-markdown
# or
bun add themed-markdownUsage
import { IndustryMarkdownSlide, ThemeProvider, defaultTheme } from 'themed-markdown';
function App() {
const markdownContent = `
# My Presentation
## Slide 1
Content for the first slide
## Slide 2
Content for the second slide
`;
return (
<ThemeProvider theme={defaultTheme}>
<IndustryMarkdownSlide
content={markdownContent}
slideIdPrefix="demo"
slideIndex={0}
isVisible
theme={defaultTheme}
/>
</ThemeProvider>
);
}Development
# Install dependencies
bun install
# Run tests
bun test
# Build the project
bun run build
# Type check
bun run typecheck
# Lint
bun run lintLicense
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Credits
Developed by a24z.ai
