Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation tools #213

Open
wants to merge 32 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a5b3fc8
feat: doc sources list
MarcoMeijer Jun 11, 2024
8e209df
feat: doc sources add
MarcoMeijer Jun 12, 2024
57f4935
feat: doc sources remove
MarcoMeijer Jun 12, 2024
a264f3b
fix: removing quotes from string
MarcoMeijer Jun 12, 2024
288c63e
feat: vectorizing doc sources
MarcoMeijer Jun 12, 2024
fd2c2fe
feat: adding http urls to the documentation
MarcoMeijer Jun 12, 2024
52d4bca
feat: crawling web pages
MarcoMeijer Jun 14, 2024
83b9780
fix rebase
olegklimov Jun 16, 2024
18f8a05
test
MarcoMeijer Jun 17, 2024
4a4ebb2
fix: only adding sources from the same website
MarcoMeijer Jun 17, 2024
8b0101d
fix: remove unused function
MarcoMeijer Jun 17, 2024
27e1755
feat: adding websites to documentation in background
MarcoMeijer Jun 18, 2024
6075bb8
fix: better file layout for documentation
MarcoMeijer Jun 18, 2024
09521e3
fix: turned all documentation sources commands into one
MarcoMeijer Jun 18, 2024
b5da912
feat: creating origin.json file
MarcoMeijer Jun 19, 2024
7463dbd
feat: loading origin.json files on lsp startup
MarcoMeijer Jun 19, 2024
09b0657
fix: set max_pages to 40
MarcoMeijer Jun 19, 2024
c6b3f2b
fix: storing urls as documentation sources
MarcoMeijer Jun 20, 2024
f429052
fix: typo
MarcoMeijer Jun 20, 2024
dc15afd
feat: deleting documentation sources files
MarcoMeijer Jun 20, 2024
01a255b
fix: remove links from documentation .md files
MarcoMeijer Jun 21, 2024
5eb6778
fix: skipping 404 pages
MarcoMeijer Jun 21, 2024
de27e97
fix: formatting
MarcoMeijer Jun 21, 2024
156707b
fix: better error message for unknown action
MarcoMeijer Jun 21, 2024
96eb7dd
fix: use home ~/.refact instead of ./.refact for docs
MarcoMeijer Jun 21, 2024
2bb836b
fix: compress documentation sources
MarcoMeijer Jun 28, 2024
decd0c8
fix: added more content ids
MarcoMeijer Jun 28, 2024
2e9a3eb
fix: crawling links correctly
MarcoMeijer Jul 4, 2024
9dffef9
Merge branch 'dev' into documentation_tools2
MarcoMeijer Jul 5, 2024
943bd29
feat: inline doc sources
MarcoMeijer Jul 12, 2024
a9f4df8
fix: improving conversion to markdown by looking for article tag
MarcoMeijer Jul 12, 2024
33cd5f3
pretty
olegklimov Jul 12, 2024
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
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ similar = "2.3.0"
axum = "0.6.20"
uuid = { version = "1", features = ["v4"] }
lazy_static = "1.4.0"
html2text = "0.12.5"
select = "0.6.0"
indexmap = {version = "1.9.1", features = ["serde-1"]}


regex-automata = { version = "0.1.10", features = ["transducer"] }
sorted-vec = "0.8.3"
tree-sitter = "0.22"
Expand Down
Loading
Loading