mirror of
https://github.com/documize/community.git
synced 2025-08-05 21:45:28 +02:00
CodeMirror upgrade to 5.38.0
This commit is contained in:
parent
36be6243ad
commit
cfe30dcde5
52 changed files with 905 additions and 413 deletions
19
gui/public/codemirror/mode/mllike/index.html
vendored
19
gui/public/codemirror/mode/mllike/index.html
vendored
|
@ -132,6 +132,25 @@ let () =
|
|||
|
||||
(* A Hundred Lines of Caml - http://caml.inria.fr/about/taste.en.html *)
|
||||
(* OCaml page on Wikipedia - http://en.wikipedia.org/wiki/OCaml *)
|
||||
|
||||
module type S = sig type t end
|
||||
|
||||
let x = {|
|
||||
this is a long string
|
||||
with many lines and stuff
|
||||
|}
|
||||
|
||||
let b = 0b00110
|
||||
let h = 0x123abcd
|
||||
let e = 1e-10
|
||||
let i = 1.
|
||||
let x = 30_000
|
||||
let o = 0o1234
|
||||
|
||||
[1; 2; 3] (* lists *)
|
||||
|
||||
1 @ 2
|
||||
1. +. 2.
|
||||
</textarea>
|
||||
|
||||
<h2>F# mode</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue