fssnippets / fssnip-website

Source code for the F# Snippets web site
http://fssnip.net
103 stars 36 forks source link

Tooltip implementation #86

Closed ShalokShalom closed 6 years ago

ShalokShalom commented 6 years ago

Hi there - I consider implementing the tooltip engine into Gitea - is this an own implementation?

How do you recommend to implement the whole stuff, so including syntax highlighting?

tpetricek commented 6 years ago

The F# Snippets web site is using (fairly directly) the F# Formatting library for colorization and tool tips. The documentation shows this: https://fsprojects.github.io/FSharp.Formatting/codeformat.html

In F# Snippets, we use it here: https://github.com/fssnippets/fssnip-website/blob/master/code/common/parser.fs#L69

The main tricky thing that fssnip.net does in addition to using the simple F# Formatting call is that we also download NuGet packages and reference the extracted files (so that you get tooltips for 3rd party libraries). That would be an awesome feature to have for Gitea, but it's a bit more tricky, I suppose!