Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abodthedude25 committed Oct 10, 2023
2 parents 91e3c4a + da167f6 commit 37cd3fd
Show file tree
Hide file tree
Showing 7 changed files with 576 additions and 358 deletions.
11 changes: 6 additions & 5 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@

# Guides

- [Django](./guides/Django_Guide/DjangoGuide.html)
- [Git](./guides/Git_Guide/GitGuide.html)
- [GraphQL](./guides/GraphQL_API_Guide/GraphQLAPIGuide.html)
- [React](./guides/React_Guide/ReactGuide.html)
- [Web Dev](./guides/Web_Dev_Guide/WebDevGuide.html)
- [Django](./guides/Django_Guide/DjangoGuide.md)
- [Git](./guides/Git_Guide/GitGuide.md)
- [GraphQL](./guides/GraphQL_API_Guide/GraphQLAPIGuide.md)
- [React](./guides/React_Guide/ReactGuide.md)
- [Web Dev](./guides/Web_Dev_Guide/WebDevGuide.md)

---
[Contributing](./CONTRIBUTING.md)

[Credits](./CREDITS.md)
Expand Down
909 changes: 563 additions & 346 deletions src/guides/Django_Guide/DjangoGuide.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/guides/Git_Guide/GitGuide.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

| |
| --- |
| Tech Start's Git Guide |
# Tech Start's Git Guide

![](images/image4.png)



Legend
## Legend

=== Beginner Section ===

Expand Down Expand Up @@ -451,7 +451,7 @@ WIP, should include push, pop, apply, list

== didnt realize we already have git clean there, but we can do more detail here ==

## Undoing Commits & Changes[[a]](#cmnt1)
## Undoing Commits & Changes

WIP

Expand Down
2 changes: 1 addition & 1 deletion src/guides/GraphQL_API_Guide/GraphQLAPIGuide.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

| |
| --- |
| Tech Start's API Guide |
# Tech Start's API Guide

​​![](images/image1.png)

Expand Down
2 changes: 1 addition & 1 deletion src/guides/React_Guide/ReactGuide.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

| |
| --- |
| Tech Start's React Guide |
# Tech Start's React Guide

~~ WIP ~~

Expand Down
2 changes: 1 addition & 1 deletion src/guides/Web_Dev_Guide/WebDevGuide.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

| |
| --- |
| Tech Start's Super Awesome Mega Web Dev Guide:) |
# Tech Start's Super Awesome Mega Web Dev Guide:)

Want to get into web dev? This guide should be your best friend. It covers some of the basic tools and languages you'll need to dive into the world of web development. Rather than providing tutorials, this guide focuses on directing you towards the best free online content to teach you the fundamentals.

Expand Down
2 changes: 1 addition & 1 deletion src/guides/html2Markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def get_content(path):
print(html)

# convert html to markdown
h = markdownify.markdownify(html, heading_style="UNDERLINED", code_language="python")
h = markdownify.markdownify(html, heading_style="ATX", code_language="python", heading_style_level=2)

with open('./Django_Guide/DjangoGuide.md', "w", encoding="utf-8") as f:
f.write(h)
Expand Down

0 comments on commit 37cd3fd

Please sign in to comment.