md2word 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.
@@ -0,0 +1,25 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ build-and-publish:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write
14
+ contents: read
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-python@v5
18
+ with:
19
+ python-version: "3.12"
20
+ - name: Install build tools
21
+ run: pip install build
22
+ - name: Build
23
+ run: python -m build
24
+ - name: Publish to PyPI
25
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: md2word
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Convert Markdown files to Word documents with extensive customization
5
5
  Project-URL: Homepage, https://github.com/md2word/md2word
6
6
  Project-URL: Documentation, https://github.com/md2word/md2word#readme
@@ -27,12 +27,12 @@
27
27
  代码块:
28
28
 
29
29
  ```python
30
- def fibonacci(n):
30
+ def 斐波那契(n):
31
31
  if n <= 1:
32
32
  return n
33
- return fibonacci(n-1) + fibonacci(n-2)
33
+ return 斐波那契(n-1) + 斐波那契(n-2)
34
34
 
35
- print(fibonacci(10))
35
+ print(斐波那契(10))
36
36
  ```
37
37
 
38
38
  ### 表格
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "md2word"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Convert Markdown files to Word documents with extensive customization"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes