forked from realaravinth/libmedium
fix: link formatting eating an extra character
This commit is contained in:
parent
6424c85b98
commit
ebb5d5175b
1 changed files with 31 additions and 30 deletions
|
@ -7,8 +7,9 @@
|
|||
<. if markup.start != 0 {.>
|
||||
<.= &p.text.substring(cur, (markup.start -1) as usize) .>
|
||||
<.}.>
|
||||
<. cur = (markup.end + 1) as usize; .>
|
||||
<. cur = (markup.end) as usize; .>
|
||||
<. let text = &p.text.slice(markup.start as usize..markup.end as usize); .>
|
||||
|
||||
<. if markup.type_ == "A" {.>
|
||||
<. if let Some(anchor_type) = &markup.anchor_type {.>
|
||||
<. if anchor_type == "LINK" {.>
|
||||
|
|
Loading…
Reference in a new issue