-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for C# and F# #429
Conversation
Codecov Report
@@ Coverage Diff @@
## master #429 +/- ##
==========================================
+ Coverage 98.94% 98.98% +0.04%
==========================================
Files 75 77 +2
Lines 7645 7705 +60
==========================================
+ Hits 7564 7627 +63
+ Misses 81 78 -3
Continue to review full report at Codecov.
|
'.robot': {'language': 'robotframework', 'comment': '#'}} | ||
'.robot': {'language': 'robotframework', 'comment': '#'}, | ||
'.cs': {'language': 'csharp', 'comment': '//'}, | ||
'.fs': {'language': 'fsharp', 'comment': '//'}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two other file extensions for F#:
.fsx
- F# scripting file, can be loaded directly into the F# Interactive process.fsi
- F# interface file (similar to OCAML interface files), used mostly in very large codebases to encapsulate code constructs
.fsi
is probably not relevant to this project, but .fsx
might be.
I see that C# uses specific magic commands. See e.g. this notebook, which uses for instance: #!html
<b>Hello!</b> |
This provides support in Jupytext for C# and F# notebooks, cf. #427