70 lines
2.4 KiB
Diff
70 lines
2.4 KiB
Diff
From 7fad39ad4816483612fdac95df0fc022c5620c4d Mon Sep 17 00:00:00 2001
|
|
From: peijiankang <peijiankang@kylinos.cn>
|
|
Date: Wed, 30 Aug 2023 15:50:07 +0800
|
|
Subject: [PATCH] mv commonmark to python3-commonmark
|
|
|
|
---
|
|
PKG-INFO | 10 +++++-----
|
|
README.rst | 10 +++++-----
|
|
setup.py | 2 +-
|
|
3 files changed, 11 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/PKG-INFO b/PKG-INFO
|
|
index 65753a9..7d12804 100644
|
|
--- a/PKG-INFO
|
|
+++ b/PKG-INFO
|
|
@@ -62,11 +62,11 @@ Description: commonmark.py
|
|
|
|
::
|
|
|
|
- $ commonmark README.md -o README.html
|
|
- $ commonmark README.md -o README.json -aj # output AST as JSON
|
|
- $ commonmark README.md -a # pretty print generated AST structure
|
|
- $ commonmark -h
|
|
- usage: commonmark [-h] [-o [O]] [-a] [-aj] [infile]
|
|
+ $ python3-commonmark README.md -o README.html
|
|
+ $ python3-commonmark README.md -o README.json -aj # output AST as JSON
|
|
+ $ python3-commonmark README.md -a # pretty print generated AST structure
|
|
+ $ python3-commonmark -h
|
|
+ usage: python3-commonmark [-h] [-o [O]] [-a] [-aj] [infile]
|
|
|
|
Process Markdown according to the CommonMark specification.
|
|
|
|
diff --git a/README.rst b/README.rst
|
|
index a3da1c5..67ee75c 100644
|
|
--- a/README.rst
|
|
+++ b/README.rst
|
|
@@ -52,11 +52,11 @@ There is also a CLI:
|
|
|
|
::
|
|
|
|
- $ commonmark README.md -o README.html
|
|
- $ commonmark README.md -o README.json -aj # output AST as JSON
|
|
- $ commonmark README.md -a # pretty print generated AST structure
|
|
- $ commonmark -h
|
|
- usage: commonmark [-h] [-o [O]] [-a] [-aj] [infile]
|
|
+ $ python3-commonmark README.md -o README.html
|
|
+ $ python3-commonmark README.md -o README.json -aj # output AST as JSON
|
|
+ $ python3-commonmark README.md -a # pretty print generated AST structure
|
|
+ $ python3-commonmark -h
|
|
+ usage: python3-commonmark [-h] [-o [O]] [-a] [-aj] [infile]
|
|
|
|
Process Markdown according to the CommonMark specification.
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index d82c4fb..2b6b654 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -48,7 +48,7 @@ setup(
|
|
keywords=["markup", "markdown", "commonmark"],
|
|
entry_points={
|
|
'console_scripts': [
|
|
- 'commonmark = commonmark.cmark:main',
|
|
+ 'python3-commonmark = commonmark.cmark:main',
|
|
]
|
|
},
|
|
cmdclass={'test': Test},
|
|
--
|
|
2.33.0
|
|
|