-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add description in opam file * link to API documentation from README (addresses #67) * update version number to 2.0
- Loading branch information
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,9 @@ sedlex was originally written by Alain Frisch | |
<[email protected]> and is now maintained as part of the | ||
ocaml-community repositories on github. | ||
|
||
## API | ||
The API is documented [here](https://ocaml-community.github.io/sedlex). | ||
|
||
## Overview | ||
|
||
sedlex is a lexer generator for OCaml, similar to ocamllex, but | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
opam-version: "2.0" | ||
name: "sedlex" | ||
synopsis: "An OCaml lexer generator for Unicode" | ||
version: "1.99.5" | ||
description: " | ||
sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports | ||
Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular | ||
OCaml source files. Lexing specific constructs are provided via a ppx syntax | ||
extension. | ||
" | ||
version: "2.0" | ||
license: "MIT" | ||
doc: "https://ocaml-community.github.io/sedlex/index.html" | ||
maintainer: "Alain Frisch <[email protected]>" | ||
authors: [ | ||
"Alain Frisch <[email protected]>" | ||
|