Skip to content

Commit 8dd5107

Browse files
committed
Fixed extensions stylesheet example error
1 parent 604bfa3 commit 8dd5107

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

site/docs/extensions/fixed-columns.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ toc: true
99
## Usage
1010

1111
{% highlight html %}
12-
<link rel="stylesheet" src="extensions/fixed-columns/bootstrap-table-fixed-columns.css">
12+
<link rel="stylesheet" href="extensions/fixed-columns/bootstrap-table-fixed-columns.css">
1313
<script src="extensions/fixed-columns/bootstrap-table-fixed-columns.js"></script>
1414
{% endhighlight %}
1515

@@ -60,8 +60,8 @@ toc: true
6060
* Not support `showFooter` option.
6161
* Need to import after sticky-header when using with sticky-header extension. For example:
6262
{% highlight html %}
63-
<link rel="stylesheet" src="extensions/sticky-header/bootstrap-table-sticky-header.css">
64-
<link rel="stylesheet" src="extensions/fixed-columns/bootstrap-table-fixed-columns.css">
63+
<link rel="stylesheet" href="extensions/sticky-header/bootstrap-table-sticky-header.css">
64+
<link rel="stylesheet" href="extensions/fixed-columns/bootstrap-table-fixed-columns.css">
6565
<script src="extensions/sticky-header/bootstrap-table-sticky-header.js"></script>
6666
<script src="extensions/fixed-columns/bootstrap-table-fixed-columns.js"></script>
6767
{% endhighlight %}

site/docs/extensions/group-by-v2.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ toc: true
99
## Usage
1010

1111
{% highlight html %}
12-
<link rel="stylesheet" src="extensions/group-by-v2/bootstrap-table-group-by.css">
12+
<link rel="stylesheet" href="extensions/group-by-v2/bootstrap-table-group-by.css">
1313
<script src="extensions/group-by-v2/bootstrap-table-group-by.js"></script>
1414
{% endhighlight %}
1515

@@ -39,9 +39,9 @@ toc: true
3939

4040
- **Detail:**
4141

42-
Set the field name(s) that you want to group the data.
43-
For a single field use a `String` e.g. `shape`.
44-
For a multiple fields use a `Array` e.g. `["shape", "color"]`.
42+
Set the field name(s) that you want to group the data.
43+
For a single field use a `String` e.g. `shape`.
44+
For a multiple fields use a `Array` e.g. `["shape", "color"]`.
4545

4646
- **Default:** `''`
4747

@@ -93,12 +93,12 @@ toc: true
9393

9494
- **Detail:**
9595

96-
All group keys (which are in this array will be collapsed by default.
96+
All group keys (which are in this array will be collapsed by default.
9797
The value of this option can be:
9898
- A variable (array)
9999
- An Array string e.g. `["circle"]`
100100
- A function (returns an array) which gets as parameters:
101101
- The group key
102-
- The entries of the group
102+
- The entries of the group
103103

104104
- **Default:** `[]`

site/docs/extensions/sticky-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is an extension which provides a sticky header for the table when scrolling
1111
## Usage
1212

1313
{% highlight html %}
14-
<link rel="stylesheet" src="extensions/sticky-header/bootstrap-table-sticky-header.css">
14+
<link rel="stylesheet" href="extensions/sticky-header/bootstrap-table-sticky-header.css">
1515
<script src="extensions/sticky-header/bootstrap-table-sticky-header.js"></script>
1616
{% endhighlight %}
1717

0 commit comments

Comments
 (0)