>` | `Default::default()` | Card title. |
-| children | `Children` | | Card's content. |
-
-### Card Slots
-
-| Name | Default | Description |
-| --------------- | ------- | --------------------- |
-| CardHeader | `None` | Header content. |
-| CardHeaderExtra | `None` | Header extra content. |
-| CardFooter | `None` | Footer content. |
diff --git a/demo_markdown/docs/checkbox/mod.md b/demo_markdown/docs/checkbox/mod.md
deleted file mode 100644
index d67d59a..0000000
--- a/demo_markdown/docs/checkbox/mod.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# Checkbox
-
-```rust demo
-let checked = RwSignal::new(false);
-
-view! {
-
-
-}
-```
-
-### Group
-
-```rust demo
-use std::collections::HashSet;
-
-let value = RwSignal::new(HashSet::new());
-
-view! {
-
-
-
-
-
- "value: " {move || format!("{:?}", value.get())}
-}
-```
-
-### Checkbox Props
-
-| Name | Type | Default | Description |
-| -------- | ----------------------------------- | -------------------- | ------------------------------------------- |
-| class | `OptionalProp>` | `Default::default()` | Addtional classes for the checkbox element. |
-| value | `Model` | `false` | Whether the checkbox is being checked. |
-| children | `Children` | | Checkbox's content. |
-
-### CheckboxGroup Props
-
-| Name | Type | Default | Description |
-| -------- | ------------------------ | -------------------- | ------------------------------------- |
-| value | `Model>` | `Default::default()` | Sets the value of the checkbox group. |
-| children | `Children` | | CheckboxGroup's content. |
-
-### CheckboxItem Props
-
-| Name | Type | Default | Description |
-| --- | --- | --- | --- |
-| class | `OptionalProp>` | `Default::default()` | Addtional classes for the checkbox element. |
-| key | `String` | | The key of the checkbox to be used in a checkbox group. |
-| label | `Option` | `None` | Checkbox's label. |
diff --git a/demo_markdown/docs/date_picker/mod.md b/demo_markdown/docs/date_picker/mod.md
deleted file mode 100644
index a537d93..0000000
--- a/demo_markdown/docs/date_picker/mod.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Date Picker
-
-```rust demo
-use chrono::prelude::*;
-let value = RwSignal::new(Local::now().date_naive());
-let option_value = RwSignal::new(Some(Local::now().date_naive()));
-
-view! {
-
-
-
-
-}
-```
-
-### DatePicker Props
-
-| Name | Type | Default | Desciption |
-| --- | --- | --- | --- |
-| class | `OptionalProp>` | `Default::default()` | Addtional classes for the date picker element. |
-| value | `Model