File: use-local-pngs.patch

package info (click to toggle)
python-arabic-reshaper 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 2,030; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 1,497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Description: use local PNGs in README.md
Author: Martin <debacle@debian.org>
Origin: vendor
Last-Update: 2022-09-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@
 – or a library – that doesn’t support Arabic you’re pretty likely to end up
 with something that looks like this:
 
-![Arabic text written from left to right with no reshaping](http://mpcabd.xyz/wp-content/uploads/2012/05/arabic-1.png)
+![Arabic text written from left to right with no reshaping](arabic-1.png)
 
 We have two problems here, first, the characters are in the isolated form,
 which means that every character is rendered regardless of its surroundings,
@@ -30,13 +30,13 @@
 [python-bidi](https://github.com/MeirKriheli/python-bidi).
 If you use it you’ll end up with something that looks like this:
 
-![Arabic text written from right to left with no reshaping](http://mpcabd.xyz/wp-content/uploads/2012/05/arabic-6.png)
+![Arabic text written from right to left with no reshaping](arabic-6.png)
 
 The only issue left to solve is to reshape those characters and replace them
 with their correct shapes according to their surroundings. Using this library
 helps with the reshaping so we can get the proper result like this:
 
-![Arabic text written from right to left with reshaping](http://mpcabd.xyz/wp-content/uploads/2012/05/arabic-3.png)
+![Arabic text written from right to left with reshaping](arabic-3.png)
 
 ## Installation