Skip to content

Commit

Permalink
update linking position
Browse files Browse the repository at this point in the history
  • Loading branch information
mursalatul committed Jan 23, 2024
1 parent 0473456 commit e2889ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions ADMIN/MAINTAIN/DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
This documentation provides a front view of the content presented in the repository. Here, you can see the folders and the files with a tree-view structure.

## Content
- [hello_diu](/hello_diu)
- [hello_diu.c](hello_diu/hello_diu.c)
- [palindrom](/palindrom)
- [is_palindrom_number.c](palindrom/is_palindrom_number.c)
- [prime](/prime)
- [is_prime.cpp](prime/is_prime.cpp)
- [search](/search)
- [binary_search.cpp](search/binary_search.cpp)
- [linear_search.cpp](search/linear_search.cpp)
- [selection_sort](/selection_sort)
- [selection_sort_cpp.cpp](selection_sort/selection_sort_cpp.cpp)
- [hello_diu](https://github.com/mursalatul/code-park/tree/master/hello_diu)
- [hello_diu.c](https://github.com/mursalatul/code-park/tree/master/hello_diu/hello_diu.c)
- [palindrom](https://github.com/mursalatul/code-park/tree/master/palindrom)
- [is_palindrom_number.c](https://github.com/mursalatul/code-park/tree/master/palindrom/is_palindrom_number.c)
- [prime](https://github.com/mursalatul/code-park/tree/master/prime)
- [is_prime.cpp](https://github.com/mursalatul/code-park/tree/master/prime/is_prime.cpp)
- [search](https://github.com/mursalatul/code-park/tree/master/search)
- [binary_search.cpp](https://github.com/mursalatul/code-park/tree/master/search/binary_search.cpp)
- [linear_search.cpp](https://github.com/mursalatul/code-park/tree/master/search/linear_search.cpp)
- [selection_sort](https://github.com/mursalatul/code-park/tree/master/selection_sort)
- [selection_sort_cpp.cpp](https://github.com/mursalatul/code-park/tree/master/selection_sort/selection_sort_cpp.cpp)
4 changes: 2 additions & 2 deletions ADMIN/MAINTAIN/classes/Documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def writedoc(self, folder_file: dict):
# getting folder name and file list
for folder, file in folder_file.items():
# writing folder name to doc
doc.write(f"- [{folder}](/{folder})\n")
doc.write(f"- [{folder}](https://github.com/mursalatul/code-park/tree/master/{folder})\n")
# sorting the files for organized view in doc
#file.sort()
# adding the file names
for files in file:
doc.write(f" - [{files}]({folder}/{files})\n")
doc.write(f" - [{files}](https://github.com/mursalatul/code-park/tree/master/{folder}/{files})\n")

0 comments on commit e2889ad

Please sign in to comment.