Skip to content

Commit 11c4dff

Browse files
authored
Merge pull request #79 from panglesd/new-cmarkit
Upgrade attribute's parsing
2 parents 6da4a11 + 1a8aa0b commit 11c4dff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2428
-1984
lines changed

CONTRIBUTING.md

+7
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,10 @@ slipshow-vscode$ vsce publish patch # (or minor, major)
7878
Publish on open-vsx: connect to open-vsx, login and manually publish the new vsix.
7979

8080
### Update sliphub
81+
82+
TODO
83+
84+
## Vendoring
85+
86+
Slipshow vendors a few modified dependencies. Currently it uses
87+
[git-vendor](https://github.com/brettlangdon/git-vendor).

src/compiler/lib/mappings.ml

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ let of_cmarkit resolve_images =
2626
ret
2727
| _ -> Mapper.default
2828
in
29-
let inline _ = function
30-
| Inline.Image (l, meta) ->
29+
let inline i = function
30+
| Inline.Image ((l, (attrs, meta2)), meta) ->
3131
let text = Inline.Link.text l in
3232
let reference =
3333
match Inline.Link.reference l with
@@ -53,7 +53,8 @@ let of_cmarkit resolve_images =
5353
`Inline ((ld, attrs), meta)
5454
in
5555
let l = Inline.Link.make text reference in
56-
Mapper.ret (Inline.Image (l, meta))
56+
let attrs = Mapper.map_attrs i attrs in
57+
Mapper.ret (Inline.Image ((l, (attrs, meta2)), meta))
5758
| _ -> Mapper.default
5859
in
5960
let attrs = function

src/compiler/lib/renderers.ml

+4-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@ let custom_html_renderer =
7777
let default = renderer ~safe:false () in
7878
let custom_html =
7979
let inline c = function
80-
| Inline.Text (t, _) ->
80+
| Inline.Text ((t, (attrs, _)), _) ->
8181
(* Put text inside spans to be able to apply styles on them *)
82-
Context.string c "<span>";
82+
Context.string c "<span";
83+
add_attrs c attrs;
84+
Context.byte c '>';
8385
html_escaped_string c t;
8486
Context.string c "</span>";
8587
true

vendor/github.com/panglesd/cmarkit/B0.ml

+33-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/panglesd/cmarkit/CHANGES.md

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/panglesd/cmarkit/_tags

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/panglesd/cmarkit/doc/index.mld

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/panglesd/cmarkit/pkg/pkg.ml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)