Skip to content

Commit

Permalink
Add own Extractor (#201)
Browse files Browse the repository at this point in the history
* Add custom extractor

* Add namespaces to blocks

* Fix: Errors
  • Loading branch information
Snowiiii authored Oct 27, 2024
1 parent 5e6374e commit b17ade7
Show file tree
Hide file tree
Showing 41 changed files with 318,853 additions and 312,162 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 23
cache: npm
- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
# Icon must end with two \r
Icon

# Intellij IDEA
.idea

# Thumbnails
._*

Expand Down Expand Up @@ -39,6 +42,30 @@ Temporary Items
# Mobile Tools for Java (J2ME)
.mtj.tmp/

## Java/Gradle Stuff
.gradle
**/build/
!src/**/build/
.kotlin

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Avoid ignore Gradle wrappper properties
!gradle-wrapper.properties

# Cache of project
.gradletasknamecache

# Eclipse Gradle plugin generated files
# Eclipse Core
.project
# JDT-specific (Eclipse Java Development Tools)
.classpath

# Package Files #
*.jar
*.war
Expand Down Expand Up @@ -93,3 +120,5 @@ features.toml
docs/.vitepress/dist
docs/.vitepress/cache
node_modules

run/
Loading

0 comments on commit b17ade7

Please sign in to comment.