paperforge-notes 0.1.0__tar.gz → 0.1.2__tar.gz
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.
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/PKG-INFO +26 -10
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/README.md +471 -455
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/PKG-INFO +26 -10
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/pyproject.toml +2 -2
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/tests/test_exports.py +70 -70
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/tests/test_markdown_compiler.py +106 -106
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/tests/test_math.py +65 -65
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/SOURCES.txt +0 -0
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/dependency_links.txt +0 -0
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/entry_points.txt +0 -0
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/requires.txt +0 -0
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/top_level.txt +0 -0
- {paperforge_notes-0.1.0 → paperforge_notes-0.1.2}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paperforge-notes
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Deprecated. This package has moved to engrapha-notes.
|
|
5
5
|
Author: Bharat Dangi
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,7 +20,23 @@ Requires-Dist: pytest-cov>=6.0; extra == "dev"
|
|
|
20
20
|
Requires-Dist: ruff>=0.9.0; extra == "dev"
|
|
21
21
|
Requires-Dist: mypy>=1.11.0; extra == "dev"
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
> **⚠️ This project has moved to Engrapha.**
|
|
24
|
+
>
|
|
25
|
+
> PaperForge is no longer under active development.
|
|
26
|
+
>
|
|
27
|
+
> Please install:
|
|
28
|
+
>
|
|
29
|
+
> ```bash
|
|
30
|
+
> pip install engrapha-notes
|
|
31
|
+
> ```
|
|
32
|
+
>
|
|
33
|
+
> Repository:
|
|
34
|
+
> https://github.com/Bharat940/engrapha
|
|
35
|
+
>
|
|
36
|
+
> Documentation:
|
|
37
|
+
> https://bharat940.github.io/engrapha
|
|
38
|
+
|
|
39
|
+

|
|
24
40
|
# 📝 paperforge_notes
|
|
25
41
|
|
|
26
42
|
[](https://www.python.org/)
|
|
@@ -203,7 +219,7 @@ pn.info_table(
|
|
|
203
219
|
|
|
204
220
|
### 4. Images (Local & Remote)
|
|
205
221
|
|
|
206
|
-
You can render images from local paths or remote URLs directly into your document. Remote URLs are automatically downloaded and cached locally in `.
|
|
222
|
+
You can render images from local paths or remote URLs directly into your document. Remote URLs are automatically downloaded and cached locally in `.PaperForge_cache/images` for offline access and speed.
|
|
207
223
|
|
|
208
224
|
#### Sizing and Hyperlink Example
|
|
209
225
|
|
|
@@ -391,10 +407,10 @@ pn.packet_format(
|
|
|
391
407
|
|
|
392
408
|
## 💻 Markdown CLI Compiler
|
|
393
409
|
|
|
394
|
-
You can compile markdown notes files directly to PDF via the command line interface using either `
|
|
410
|
+
You can compile markdown notes files directly to PDF via the command line interface using either `PaperForge` or `pdfnotes`:
|
|
395
411
|
|
|
396
412
|
```bash
|
|
397
|
-
|
|
413
|
+
PaperForge input.md --output output.pdf --theme catppuccin-mocha
|
|
398
414
|
```
|
|
399
415
|
|
|
400
416
|
### Options:
|
|
@@ -418,9 +434,9 @@ paperforge input.md --output output.pdf --theme catppuccin-mocha
|
|
|
418
434
|
|
|
419
435
|
### Alert Boxes Mapping:
|
|
420
436
|
GitHub-style alert blocks are parsed and compiled automatically:
|
|
421
|
-
* `> [!NOTE]`
|
|
422
|
-
* `> [!TIP]`
|
|
423
|
-
* `> [!WARNING]` / `> [!CAUTION]`
|
|
437
|
+
* `> [!NOTE]` → Yellow note box (via `pn.note`)
|
|
438
|
+
* `> [!TIP]` → Green exam-tip box (via `pn.tip`)
|
|
439
|
+
* `> [!WARNING]` / `> [!CAUTION]` → Yellow-bordered container box (via `pn.highlight`)
|
|
424
440
|
|
|
425
441
|
### Embedded Diagrams Syntax:
|
|
426
442
|
You can embed diagrams inside markdown using simple text DSL blocks:
|
|
@@ -468,7 +484,7 @@ def add(x: Flowable | list[Flowable] | tuple[Flowable, ...]) -> None:
|
|
|
468
484
|
* **Python** >= 3.11
|
|
469
485
|
* **reportlab** >= 4.5.1
|
|
470
486
|
* **pygments** >= 2.20.0
|
|
471
|
-
* **
|
|
487
|
+
* **PaperForge-diagrams** >= 0.1.0
|
|
472
488
|
|
|
473
489
|
Optional (extended features — install with `[full]`):
|
|
474
490
|
* **pymupdf** >= 1.25.0 (PPTX export, document splitting)
|