Skip to content

Commit 52993b8

Browse files
swap matestack.io for matestack.org in docs
1 parent f5a615f commit 52993b8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/components/link.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This component is used to either navigate within your matestack application or t
66

77
## Parameters
88

9-
This component create a `<a>`-tag and expects a mandatory path input and optional options parameters.
9+
This component creates an `<a>`-tag and expects a mandatory path input and optional options parameters.
1010

1111
#### # path
1212
If the path input is a **string** it creates a link to the outside web.
@@ -33,15 +33,15 @@ This example renders a simple link within a `<div`-tag
3333

3434
```ruby
3535
div id: "foo", class: "bar" do
36-
link path: "https://matestack.io", text: "Here"
36+
link path: "https://matestack.org", text: "Here"
3737
end
3838
```
3939

4040
and returns
4141

4242
```html
4343
<div id="foo" class="bar">
44-
<a href="https://matestack.io">Here</a>
44+
<a href="https://matestack.org">Here</a>
4545
</div>
4646
```
4747

@@ -50,7 +50,7 @@ This example renders a link without a specific link-text, so it wraps the rest o
5050

5151
```ruby
5252
div id: "foo", class: "bar" do
53-
link path: "https://matestack.io" do
53+
link path: "https://matestack.org" do
5454
plain "Here"
5555
end
5656
end
@@ -60,7 +60,7 @@ returns
6060

6161
```html
6262
<div id="foo" class="bar">
63-
<a href="https://matestack.io">Here</a>
63+
<a href="https://matestack.org">Here</a>
6464
</div>
6565
```
6666

@@ -69,7 +69,7 @@ This example renders a link around a div and the link opens in a new tab.
6969

7070
```ruby
7171
div id: "foo", class: "bar" do
72-
link path: "https://matestack.io", target: "_blank" do
72+
link path: "https://matestack.org", target: "_blank" do
7373
div do
7474
plain "Here"
7575
end
@@ -81,7 +81,7 @@ returns
8181

8282
```html
8383
<div id="foo" class="bar">
84-
<a target="_blank" href="https://matestack.io">
84+
<a target="_blank" href="https://matestack.org">
8585
<div>Here</div>
8686
</a>
8787
</div>

0 commit comments

Comments
 (0)