Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion use/windows/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<div class="space-y-4 sm:space-y-8 lg:space-y-12">
<article markdown=1 class="prose-card">
## Option 1: Install the CLI tools and use your own editor
<img alt=".NET Core Logo" class="w-24 h-24 m-0" src="{{ '../../images/thumbs/NET_Core_Logo.svg' | relative_url }}" />

Check failure on line 10 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:10:101 MD013/line-length Line length [Expected: 100; Actual: 117] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md

Install the [.NET Core SDK](https://dotnet.microsoft.com/download). Once that is installed, you can begin using F#!

Check failure on line 12 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:12:101 MD013/line-length Line length [Expected: 100; Actual: 115] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md

Create a file called `hello.fsx` that looks like this:

Expand All @@ -23,9 +23,9 @@
dotnet fsi hello.fsx
```

If this is your first time using .NET Core, there will be a short, one-time message about using the .NET SDK. After that, you'll see the following output in your console:

Check failure on line 26 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:26:101 MD013/line-length Line length [Expected: 100; Actual: 170] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md

Hello World from F#

Check failure on line 28 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Code block style

use/windows/index.md:28 MD046/code-block-style Code block style [Expected: fenced; Actual: indented] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md046.md

To create a project use

Expand All @@ -42,19 +42,19 @@
<article markdown=1 class="prose-card">
## Option 2: Install Visual Studio Code and Ionide
<div class="flex flex-row gap-4 items-center">
<img alt="Visual Studio Code Logo" class="h-24 aspect-auto m-0" src="{{ '../../images/thumbs/Visual_Studio_Code_1.35_icon.svg' | relative_url }}" />

Check failure on line 45 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:45:101 MD013/line-length Line length [Expected: 100; Actual: 148] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md
<i class="fa-solid fa-plus fa-xl"></i>
<img alt="Ionide Logo" class="h-24 aspect-auto m-0" src="{{ '../../images/thumbs/ionide_logo.png' | relative_url }}" />

Check failure on line 47 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:47:101 MD013/line-length Line length [Expected: 100; Actual: 119] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md
</div>
Visual Studio Code](https://code.visualstudio.com) is a free, [open source](https://github.com/microsoft/vscode), cross platform source code editor
[Visual Studio Code](https://code.visualstudio.com) is a free, [open source](https://github.com/microsoft/vscode), cross platform source code editor

Check failure on line 49 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Line length

use/windows/index.md:49:101 MD013/line-length Line length [Expected: 100; Actual: 148] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md
supporting [a lot of languages](https://code.visualstudio.com/docs/languages/overview).
F# is supported by the [Ionide](http://ionide.io/) project.

1. Install [.NET Core SDK](https://dotnet.microsoft.com/download) like in step 1.

Check failure on line 53 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Spaces after list markers

use/windows/index.md:53:1 MD030/list-marker-space Spaces after list markers [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md030.md

2. Install [Visual Studio Code](https://code.visualstudio.com/download) for Windows.

Check failure on line 55 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Spaces after list markers

use/windows/index.md:55:1 MD030/list-marker-space Spaces after list markers [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md030.md

3. Press `Ctrl+Shift+P` and enter the following to install the Ionide package for VS Code.

Check failure on line 57 in use/windows/index.md

View workflow job for this annotation

GitHub Actions / lint

Spaces after list markers

use/windows/index.md:57:1 MD030/list-marker-space Spaces after list markers [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md030.md

ext install Ionide-fsharp

Expand Down