Meta
fsharp add tag
FoggyFinder
With


	```fs
    // some code goes here
	```

or 

	```fsharp
    // some code goes here
	```
    
Since `CodeMirror` has [F# support](https://codemirror.net/mode/mllike/index.html) I suppose this is easy to implement.
Top Answer
Jack Douglas
Update: related news is that we now have a dedicated F# community where `text/x-fsharp` is the default language. We still plan to eventually add some custom shortcuts like `fsharp` for CodeMirror modes.

---

F# syntax highlighting is available but currently only using the CodeMirror MIME type rather than a friendly name:

So:

~~~
```text/x-fsharp
let main argv = 
    printfn "Hello World" ```
~~~

produces:

```text/x-fsharp
let main argv = 
    printfn "Hello World" 
```

We are considering adding some custom shortcuts like `fsharp` for CodeMirror modes.

This isn't so much on dedicated communities with a default code language, but it does matter here where we might see various different languages in posts.

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.