diff --git a/flake.lock b/flake.lock
index 2b27804..b8a3733 100644
--- a/flake.lock
+++ b/flake.lock
@@ -22,11 +22,11 @@
]
},
"locked": {
- "lastModified": 1725876916,
- "narHash": "sha256-3SDm2pV1ZIQHqIhAe7BjuXhNdVyzcxPiwaFyqE8ODdc=",
+ "lastModified": 1720770600,
+ "narHash": "sha256-Ouic1xV4pJns1rbw6wnee9fO4VWkcv73hxSLQkPYabk=",
"ref": "refs/heads/master",
- "rev": "85be3861ceadba6e3d877a64cade15015ea0c96f",
- "revCount": 324,
+ "rev": "d630cc7f76b56ad3ebe084159df6beab48db9866",
+ "revCount": 247,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
diff --git a/layouts/docs/list.html b/layouts/docs/list.html
deleted file mode 100644
index fc5c73a..0000000
--- a/layouts/docs/list.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{{ define "main" }}
-
- {{ partial "sidebar.html" (dict "context" .) }}
- {{ partial "toc.html" . }}
-
-
- {{ partial "breadcrumb.html" . }}
-
- {{- if not (isset .Params "hidetitle") -}}
{{ .Title }}
{{- end -}}
- {{ .Content }}
-
- {{ partial "components/last-updated.html" . }}
- {{ partial "components/pager.html" . }}
- {{ partial "components/comments.html" . }}
-
-
-
-{{ end }}
diff --git a/layouts/shortcodes/qmltypelink.html b/layouts/shortcodes/qmltypelink.html
deleted file mode 100644
index 018ebd5..0000000
--- a/layouts/shortcodes/qmltypelink.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{- $params := dict
- "type" (.Get "type")
- "module" (.Get "module")
- "name" (.Get "name")
- "mtype" (.Get "mtype")
- "mname" (.Get "mname")
--}}
-
-{{- partial "qmltype.html" $params -}}
diff --git a/typegen/src/main.rs b/typegen/src/main.rs
index 0e22cc9..a14255c 100644
--- a/typegen/src/main.rs
+++ b/typegen/src/main.rs
@@ -4,7 +4,6 @@ use anyhow::{anyhow, Context};
mod outform;
mod parse;
-mod reformat;
mod resolver;
mod typespec;
diff --git a/typegen/src/parse.rs b/typegen/src/parse.rs
index 3b2b73a..2a8d7f8 100644
--- a/typegen/src/parse.rs
+++ b/typegen/src/parse.rs
@@ -4,10 +4,7 @@ use anyhow::{anyhow, bail, Context};
use fancy_regex::Regex;
use serde::Deserialize;
-use crate::{
- reformat::{self, ReformatPass},
- typespec,
-};
+use crate::typespec;
#[derive(Deserialize, Debug)]
pub struct ModuleInfoHeader {
@@ -152,12 +149,12 @@ impl Parser {
class_regex: Regex::new(r#"(?