ansi-art-convert 0.1.0__tar.gz → 0.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ansi-art-convert
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: ANSI > UTF-8 Conversion
5
5
  Author-email: Tom McKeesick <tmck01@gmail.com>
6
6
  Maintainer-email: Tom McKeesick <tmck01@gmail.com>
@@ -20,6 +20,43 @@ Dynamic: license-file
20
20
 
21
21
  # ANSI > UTF-8 Conversion
22
22
 
23
+ - [ANSI \> UTF-8 Conversion](#ansi--utf-8-conversion)
24
+ - [Installation](#installation)
25
+ - [Usage](#usage)
26
+ - [Documentation](#documentation)
27
+ - [Resources](#resources)
28
+
29
+ ---
30
+
31
+ ## Installation
32
+
33
+ You can install the [`ansi-art-convert`](https://pypi.org/project/ansi-art-convert/) package via pip:
34
+
35
+ ```shell
36
+ pip install ansi-art-convert
37
+ ```
38
+
39
+ > [!IMPORTANT]
40
+ > _As a prerequisite, you will need to install the [`ANSI megafont`](https://github.com/tmck-code/ansi-megafont) on your system via your regular font installer, and ensure that your terminal emulator is configured to use it._
41
+
42
+ Alternatively, you can install it via a one-liner (you will still need to configure your terminal to use it):
43
+ <details>
44
+ <summary>install commands:</summary>
45
+
46
+ ```shell
47
+ # osx
48
+ curl -sOL --output-dir ~/Library/Fonts/ https://github.com/tmck-code/ansi-megafont/releases/download/v0.1.0/TopazPlusPlus.ttf \
49
+ && fc-cache -f ~/Library/Fonts/ \
50
+ && fc-list | grep "TopazPlusPlus"
51
+
52
+ # linux
53
+ curl -sOL --output-dir ~/.fonts/ https://github.com/tmck-code/ansi-megafont/releases/download/v0.1.0/TopazPlusPlus.ttf \
54
+ && fc-cache -f ~/.fonts/ \
55
+ && fc-list | grep "TopazPlusPlus"
56
+ ```
57
+
58
+ </details>
59
+
23
60
  ## Usage
24
61
 
25
62
  ```shell
@@ -1,5 +1,42 @@
1
1
  # ANSI > UTF-8 Conversion
2
2
 
3
+ - [ANSI \> UTF-8 Conversion](#ansi--utf-8-conversion)
4
+ - [Installation](#installation)
5
+ - [Usage](#usage)
6
+ - [Documentation](#documentation)
7
+ - [Resources](#resources)
8
+
9
+ ---
10
+
11
+ ## Installation
12
+
13
+ You can install the [`ansi-art-convert`](https://pypi.org/project/ansi-art-convert/) package via pip:
14
+
15
+ ```shell
16
+ pip install ansi-art-convert
17
+ ```
18
+
19
+ > [!IMPORTANT]
20
+ > _As a prerequisite, you will need to install the [`ANSI megafont`](https://github.com/tmck-code/ansi-megafont) on your system via your regular font installer, and ensure that your terminal emulator is configured to use it._
21
+
22
+ Alternatively, you can install it via a one-liner (you will still need to configure your terminal to use it):
23
+ <details>
24
+ <summary>install commands:</summary>
25
+
26
+ ```shell
27
+ # osx
28
+ curl -sOL --output-dir ~/Library/Fonts/ https://github.com/tmck-code/ansi-megafont/releases/download/v0.1.0/TopazPlusPlus.ttf \
29
+ && fc-cache -f ~/Library/Fonts/ \
30
+ && fc-list | grep "TopazPlusPlus"
31
+
32
+ # linux
33
+ curl -sOL --output-dir ~/.fonts/ https://github.com/tmck-code/ansi-megafont/releases/download/v0.1.0/TopazPlusPlus.ttf \
34
+ && fc-cache -f ~/.fonts/ \
35
+ && fc-list | grep "TopazPlusPlus"
36
+ ```
37
+
38
+ </details>
39
+
3
40
  ## Usage
4
41
 
5
42
  ```shell
File without changes