Skip to content

Commit 88ba19f

Browse files
author
Nils Henning
committed
[TASK] remove table of contents
1 parent b3fa656 commit 88ba19f

File tree

6 files changed

+3
-36
lines changed

6 files changed

+3
-36
lines changed

docs/guides/000-installation/README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
This guide shows you how to add matestack-ui-core to an existing rails application.
44

5-
1. [Installation](#installation)
6-
1. [JavaScript Setup](#javascript-setup)
7-
2. [Matestack Folder](#matestack-folder)
8-
3. [Controller Setup](#controller-setup)
9-
4. [Application layout adjustments](#application-layout-adjustments)
10-
5. [Websocket Integration](#websocket-integration)
11-
2. [Usage](#usage)
12-
1. [Full matestack](#full-matestack)
13-
2. [Integration in existing projects](#integration-in-existing-projects)
14-
155
## Installation
166

177
Add 'matestack-ui-core' to your Gemfile

docs/guides/1200-devise/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ Devise is one of the most popular gems for authentication. Find out more about D
44

55
In order to integrate it fully in matestack apps and pages we need to adjust a few things. This guide explains what exactly needs to be adjusted.
66

7-
1. [Setting up Devise](#setting-up-devise)
8-
2. [Devise models](#devise-models)
9-
3. [Devise helpers](#devise-helpers)
10-
4. [Devise sign in](#devise-sign-in)
11-
5. [Devise sign out](#devise-sign-out)
127

138
## Setting up Devise
149

docs/guides/200-basic_building_blocks/README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
# Basic Building Blocks
22

3-
**Table of contents**
4-
5-
1. [Concept](#concept)
6-
1. [Apps](#apps)
7-
2. [Pages](#pages)
8-
3. [Components](#components)
9-
1. [Core Components](#core-components)
10-
2. [Creating own components](#creating-own-components)
11-
3. [Creating own vue.js components](#creating-own-vuejs-components)
12-
2. [Event Hub](#event-hub)
13-
3. [Core Features](#core-features)
143

154
## Concept
165

docs/guides/300-rails_integration/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ class Shop::App < Matestack::Ui::App
118118

119119
def head_section
120120
header do
121-
div class="round-header-background"
121+
div class: "round-header-background"
122122
nav do
123-
div class="logo" { plain "RAILS" }
123+
div class: "logo" { plain "RAILS" }
124124
end
125-
div class="hero search" do
125+
div class: "hero search" do
126126
heading text: 'Shopping never was easier'
127127
end
128128
end

docs/guides/400-transitions/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Matestack `transition` component enables switching between pages without a websi
44

55
The `transition` component is therefore one of the key components for you to use. You should use them instead of a link if the target path of that link belongs to the same app. Given a shopping application with a shop app, links to our root, products index or details page should be transitions, because they belong to the shop app. The use of transitions enables the app to switch between pages without website reloads, instead asynchronously requesting the new page in the background and switching it after a successful response from the server.
66

7-
1. [Usage](#usage)
8-
2. [Styling active transitions and it's parents](#styling-active-transitions-and-its-parents)
97

108
## Usage
119

docs/guides/500-forms/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22

33
Forms are one of the most important components for a lot of applications as they are always needed for user input, like searches, logins, registrations, newsletter subscriptions and much more. Matestack implements a `form` component which could wrap differnt form input components also implemented in matestack like text inputs, number inputs, textareas, selects, checkboxes, radio buttons and more.
44

5-
1. [Usage](#usage)
6-
1. [Form component](#form-component)
7-
2. [Form success and failure behavior](#form-success-and-failure-behavior)
8-
3. [Input components](#input-components)
9-
4. [Submitting forms](#submitting-forms)
105

116
## Usage
127

0 commit comments

Comments
 (0)