Skip to content

Commit 367ffea

Browse files
committed
removed .html from notes links changed to .md
1 parent 09de77a commit 367ffea

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/client-dsl/component-basics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class MyComponent < HyperComponent
2020
...
2121
end
2222
```
23-
> **[More on the HyperComponent base class](notes#the-hypercomponent-base-class)**
23+
> **[More on the HyperComponent base class](notes.md#the-hypercomponent-base-class)**
2424
2525
## The `render` Callback
2626

27-
At a minimum every *concrete* component class must define a `render` block which generates one or more child elements. Those children may in turn have an arbitrarily deep structure. **[More on concrete and abstract components](notes#abstract-and-concrete-components)**
27+
At a minimum every *concrete* component class must define a `render` block which generates one or more child elements. Those children may in turn have an arbitrarily deep structure. **[More on concrete and abstract components](notes.md#abstract-and-concrete-components)**
2828

2929
```ruby
3030
class Component < HyperComponent
@@ -33,7 +33,7 @@ class Component < HyperComponent
3333
end
3434
end
3535
```
36-
> The code between the `do` and `end` is called a block. **[More here...](notes#blocks-in-ruby)**
36+
> The code between the `do` and `end` is called a block. **[More here...](notes.md#blocks-in-ruby)**
3737
3838
To save a little typing you can also specify the top level element to be rendered:
3939

docs/client-dsl/component-details.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ end
3535
```
3636
Here we don't determine the actual number or contents of the `LI` children until runtime.
3737

38-
>**[The `word_count` method...](notes#word-count-method)**
38+
>**[The `word_count` method...](notes.md#word-count-method)**
3939
40-
>Dynamically generating components creates a new concept called ownership. **[More here...](notes#ownership)**
40+
>Dynamically generating components creates a new concept called ownership. **[More here...](notes.md#ownership)**
4141
4242
### Keys
4343

@@ -62,7 +62,7 @@ identify the ones that are the same:
6262
You don't have to stress out too much about keys, its easy to add them later. Just keep the concept in
6363
mind when you are generating long lists, tables, and divs with many children.
6464

65-
> **[More on how Hyperstack generates keys...](notes#generating-keys)**
65+
> **[More on how Hyperstack generates keys...](notes.md#generating-keys)**
6666
6767

6868

docs/client-dsl/html-css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ will generate
9696
<a flag=true href='/' class='myclass'></a>
9797
```
9898

99-
> **[more on passing hashes to methods](notes#ruby-hash-params)**
99+
> **[more on passing hashes to methods](notes.md#ruby-hash-params)**

0 commit comments

Comments
 (0)