Skip to content

Commit f50fc6a

Browse files
authored
Merge pull request #326 from RicoSaupe/removeunsuedpages
removed not used md files and fixed links die point to new location i…
2 parents 2342976 + 3a984f2 commit f50fc6a

File tree

12 files changed

+11
-85
lines changed

12 files changed

+11
-85
lines changed

docs/recipes/client-server/fable-remoting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Add [Fable.Remoting.Giraffe](https://www.nuget.org/packages/Fable.Remoting.Giraffe/) to the Server and [Fable.Remoting.Client](https://www.nuget.org/packages/Fable.Remoting.Client/) to the Client.
88

99
> See [How Do I Add a NuGet Package to the Server](../package-management/add-nuget-package-to-server.md)
10-
> and [How Do I Add a NuGet Package to the Client](../../v4-recipes/package-management/add-nuget-package-to-client.md).
10+
> and [How Do I Add a NuGet Package to the Client](../../recipes/package-management/add-nuget-package-to-client.md).
1111
1212
#### 2. Create the API protocol
1313
You now need to create the protocol, or contract, of the API we’ll be creating. Insert the following below the `Route` module in `Shared.fs`:

docs/recipes/ui/add-feliz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[Feliz](https://github.com/Zaid-Ajaj/Feliz) is a wrapper for the base [React](https://reactjs.org/) DSL library that emphasises consistency, lightweight formatting, discoverable attributes and full type-safety. The default SAFE Template already uses Feliz.
33

44
### Using Feliz
5-
1. [Add Feliz to your project](./../../v4-recipes//package-management/add-nuget-package-to-client.md)
5+
1. [Add Feliz to your project](./../../recipes/package-management/add-nuget-package-to-client.md)
66
1. Start using Feliz in your code.
77

88
```fsharp

docs/recipes/upgrading/v2-to-v3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ dotnet paket install
8383

8484
**Important** If you have made any modifications to the webpack file, you will need to apply them back in manually.
8585

86-
* If you were using CSS files, make sure to follow the [Stylesheet recipe](../../v4-recipes/ui/add-style.md) to add them back in.
86+
* If you were using CSS files, make sure to follow the [Stylesheet recipe](../../recipes/ui/add-style.md) to add them back in.
8787

8888
#### 11. Update TargetFramework in all projects
8989
* **Overwite** the `Client.fsproj`

docs/v4-recipes/client-server/fable-remoting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Add [Fable.Remoting.Giraffe](https://www.nuget.org/packages/Fable.Remoting.Giraffe/) to the Server and [Fable.Remoting.Client](https://www.nuget.org/packages/Fable.Remoting.Client/) to the Client.
88

99
> See [How Do I Add a NuGet Package to the Server](../../v4-recipes/package-management/add-nuget-package-to-server.md)
10-
> and [How Do I Add a NuGet Package to the Client](../../v4-recipes/package-management/add-nuget-package-to-client.md).
10+
> and [How Do I Add a NuGet Package to the Client](../../recipes/package-management/add-nuget-package-to-client.md).
1111
1212
#### 2. Create the API protocol
1313
You now need to create the protocol, or contract, of the API we’ll be creating. Insert the following below the `Route` module in `Shared.fs`:

docs/v4-recipes/javascript/third-party-react-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
To use a third-party React library in a SAFE application, you need to write an F# wrapper around it. There are two ways for doing this - using [Fable.React](https://www.nuget.org/packages/Fable.React/) or using [Feliz](https://zaid-ajaj.github.io/Feliz/).
22
## Prerequisites
33

4-
This recipe uses the [react-d3-speedometer NPM package](https://www.npmjs.com/package/react-d3-speedometer) for demonstration purposes. [Add it to your Client](../package-management/add-npm-package-to-client.md) before continuing.
4+
This recipe uses the [react-d3-speedometer NPM package](https://www.npmjs.com/package/react-d3-speedometer) for demonstration purposes. [Add it to your Client](../../recipes/package-management/add-npm-package-to-client.md) before continuing.
55

66
## Fable.React - Setup
77

docs/v4-recipes/package-management/add-npm-package-to-client.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/v4-recipes/package-management/add-nuget-package-to-client.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/v4-recipes/ui/add-bulma.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
By adding either of these to your SAFE project alongside the [Bulma stylesheet or the Bulma NPM package](https://bulma.io/documentation/overview/start/), you can take full advantage of Bulma.
99

1010
### Using Feliz.Bulma
11-
1. [Add the Feliz.Bulma NuGet package to the solution](./../package-management/add-nuget-package-to-client.md).
11+
1. [Add the Feliz.Bulma NuGet package to the solution](../../recipes/package-management/add-nuget-package-to-client.md).
1212
1. Start using Feliz.Bulma components in your F# files.
1313
```fsharp
1414
open Feliz.Bulma
@@ -19,7 +19,7 @@ Bulma.button.button [
1919
```
2020

2121
### Using Fulma
22-
1. [Add the Fulma NuGet package to the solution](./../package-management/add-nuget-package-to-client.md).
22+
1. [Add the Fulma NuGet package to the solution](../../recipes/package-management/add-nuget-package-to-client.md).
2323
1. Start using Fulma components in your F# files.
2424
```fsharp
2525
open Fulma

docs/v4-recipes/ui/add-fontawesome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you’re using the minimal template, there are a couple of things to do befor
1313

1414
#### 1. The NuGet Package
1515
Add [Fable.FontAwesome.Free NuGet Package](https://www.nuget.org/packages/Fable.FontAwesome.Free/) to the Client project.
16-
> See [How do I add a NuGet package to the Client?](../package-management/add-nuget-package-to-client.md).
16+
> See [How do I add a NuGet package to the Client?](../../recipes/package-management/add-nuget-package-to-client.md).
1717
1818
#### 2. The CDN Link
1919
Open the `index.html` file and add the following line to the `head` element:

docs/v4-recipes/ui/add-style.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)