-
Notifications
You must be signed in to change notification settings - Fork 15
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
Fix light table parsing #14
Conversation
Each word is misinterpreted as a paragraph Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
I added a commit fixing the syntax of ocaml-setup in the CI. I am not sure if this is necessary (maybe it would be better to simply remove the test, since everything is already tested by ocaml-ci). |
@@ -31,7 +31,7 @@ jobs: | |||
- name: Setup OCaml ${{ matrix.ocaml-version }} | |||
uses: ocaml/setup-ocaml@v2 | |||
with: | |||
ocaml-version: ${{ matrix.ocaml-version }} | |||
ocaml-compiler: ${{ matrix.ocaml-version }} |
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.
I agree this workflow is useless and can be removed. The esy
workflow should be kept though.
49fbc53
to
9edd6b8
Compare
Only ignore space before and after actual content Signed-off-by: Paul-Elliot <[email protected]>
9edd6b8
to
8937f76
Compare
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.
Looks good to me!
Thanks! |
Each inline item in a cell of a light syntax was interpreted as a paragraph...
This fixes it by wrapping the whole content of a cell inside a paragraph instead.