markdown2beamer 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +19 -2
- data/lib/markdown2beamer.rb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d17f38119769e8bd7aabc2c37d2254bce84059320022afae5e7f8672ef90173
|
|
4
|
+
data.tar.gz: 95bf6ffd90ae47eba0c6534c826bf45ad68029d5e9d9a711f54a6aafd74474f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce4a534614ccccd97c9d04036da1c221ac0a169fd54abc63228db7dcbbede5a8bc3f0d40bd9d020d5facd4409a98386a4c9d2e3da7707d227628830587f7d0eb
|
|
7
|
+
data.tar.gz: cf9449b9dc003c82cb03054c18a75712363493acf6bce6ef1749b608d5aed1f8d6478cd784ced2ebbce7817589430dae4d8278406dacbdc8079dff3a667413c4
|
data/README.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
markdown2beamer
|
|
3
|
+
</h1>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="#-detailed-features">✨ Detailed features</a> •
|
|
7
|
+
<a href="#-installation">📦 Installation</a> •
|
|
8
|
+
<a href="#-usage">🚀 Usage</a> •
|
|
9
|
+
<a href="#-license">🔑 License</a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
**markdown2beamer** is a Ruby-based tool that converts Markdown files into LaTeX Beamer presentations. It supports essential markdown elements like headings, bold/italic text, lists, images, and tables, transforming them into structured Beamer slides for professional presentations. This converter lets you quickly turn simple markdown documents into well-formatted LaTeX Beamer slides.
|
|
13
|
+
|
|
14
|
+
## ✨ Detailed features
|
|
4
15
|
|
|
5
16
|
- **Markdown to Beamer Conversion**: Converts standard Markdown headers, lists, tables, images, bold, and italic text to Beamer presentation format.
|
|
6
17
|
- **Supports Headers**: Transforms Markdown headers (`#`, `##`, etc.) into Beamer slides with appropriate font sizes.
|
|
@@ -15,6 +26,12 @@
|
|
|
15
26
|
$ gem install markdown2beamer
|
|
16
27
|
```
|
|
17
28
|
|
|
29
|
+
## 🚀 Usage
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
ruby markdown2beamer input_file.md output_file.tex
|
|
33
|
+
```
|
|
34
|
+
|
|
18
35
|
## 🔑 License
|
|
19
36
|
|
|
20
37
|
This package is distributed under the MIT License. This license can be found online at <http://www.opensource.org/licenses/MIT>.
|
data/lib/markdown2beamer.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: markdown2beamer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- firefly-cpp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-10-
|
|
11
|
+
date: 2024-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|