Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
b553ed2
feat: add util functions to topic & add manifest.xml and image support
MasterYip Jul 21, 2023
09b463f
feat: add file_shrink & search & format convert & topic cluster & xmi…
MasterYip Jul 21, 2023
c2d00d1
feat: topic util funcitons
MasterYip Jul 23, 2023
76768d7
feat: topic.py
MasterYip Aug 9, 2023
812b3ce
feat: md2xmind
MasterYip Aug 16, 2023
220cc05
refactor: arrange file sturcture
MasterYip Aug 20, 2023
8f6ba94
refract: Total reconstruct
MasterYip Aug 20, 2023
5404a92
test: Add testcase
MasterYip Aug 20, 2023
bffdb25
feat: md2xmind list
MasterYip Aug 20, 2023
30ebc12
feat: md2xmind support line latex 2 img
MasterYip Aug 21, 2023
488cac1
feat: markdown 2 xmind Img support
MasterYip Aug 21, 2023
f6c5b07
Latex web render
MasterYip Aug 21, 2023
5ae6467
feat: pipenv enabled
MasterYip Aug 21, 2023
eed0934
fix: interface update
MasterYip Aug 21, 2023
f2b56df
fix: topic removeSubTopicWithEmptyTitle
MasterYip Aug 21, 2023
f473fb2
Merge remote-tracking branch 'origin/dev' into dev2
MasterYip Aug 21, 2023
d10a29f
fix: git config core.ignorecase set to false
MasterYip Aug 21, 2023
def5ded
fix: remove lowercase xmindcopilot trackings
MasterYip Aug 21, 2023
5e24cf1
fix: test error
MasterYip Aug 21, 2023
9a90203
fix: update annotation
MasterYip Aug 21, 2023
9f4d887
fix: import error
MasterYip Aug 21, 2023
a201565
feat: update topic addsubTopicbyIndentedList
MasterYip Aug 21, 2023
3240cc9
fix: import error
MasterYip Aug 21, 2023
6696a2d
feat: md2xmind toXmindText
MasterYip Aug 23, 2023
ab144be
fix: md2xmind title missing bug
MasterYip Aug 24, 2023
2f03db5
fix: md2xmind bugs
MasterYip Aug 24, 2023
4a83784
fix: md2xmindtext
MasterYip Aug 24, 2023
27742d5
fix: convert2xmindtext
MasterYip Aug 24, 2023
fd5ddca
refine
MasterYip Sep 11, 2023
8645f26
test: add legacy test function
MasterYip Nov 2, 2023
1e6d7df
chore: add topic.setHyperlink
MasterYip Dec 9, 2023
2cda046
feat: fmt_cvt add xmindtext2md
MasterYip Dec 14, 2023
7754211
feat: global search update
MasterYip Dec 27, 2023
f56cb41
feat: gloabl_search fix newline removal problem
MasterYip Dec 27, 2023
e1cbba8
fix: re.match changes to re.search
MasterYip Jan 6, 2024
6ad0a76
chore: update
MasterYip Jun 29, 2024
b747caf
chore: update
MasterYip Nov 21, 2024
1117f61
fix: md2xmind bugs
MasterYip Feb 17, 2025
0543fff
feat: add github_manager
MasterYip Mar 10, 2025
2e866f9
chore: update
MasterYip Mar 10, 2025
fa2f9b6
fix: --- at last line bug
MasterYip Mar 15, 2025
e532b71
fix: latex conversion problem
MasterYip Mar 15, 2025
139ec1d
feat: add table render
MasterYip Mar 15, 2025
f297a6f
chore: update png render
MasterYip Mar 15, 2025
2645aa7
chore: update table render
MasterYip Mar 15, 2025
878b1fd
chore: update table render
MasterYip Mar 15, 2025
5ce00da
feat: update table_render
MasterYip Mar 15, 2025
1d23592
feat: add markdown table cvt
MasterYip Mar 15, 2025
c3e8794
chore: update
MasterYip Mar 15, 2025
57ad2de
chore: update table_render
MasterYip Mar 21, 2025
c3b71ac
chore: update latex equa cvt
MasterYip Apr 8, 2025
747e13f
doc: update
MasterYip Jul 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

.DS_Store
.idea

Expand Down
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./test",
"-p",
"*_test.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}
19 changes: 19 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pillow = "*"
matplotlib = "*"
requests = "*"
opencv-python = "*"
numpy = "*"
tqdm = "*"
typing-extensions = "*"

[dev-packages]

[requires]
python_version = "3.9"
python_full_version = "3.9.7"
519 changes: 519 additions & 0 deletions Pipfile.lock

Large diffs are not rendered by default.

Loading