Fossil

Changes On Branch markdown-multiple-sublists
Login

Changes On Branch markdown-multiple-sublists

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch markdown-multiple-sublists Excluding Merge-Ins

This is equivalent to a diff from 47362306 to 25028896

2023-11-11
17:59
Check if markdown paragraphs contains lists. Fixes issue reported in b598ac56defddb2a. (check-in: a8782f33 user: drh tags: trunk)
2023-11-02
19:37
For the "fossil sync" command if the -v option is repeated, then the HTTP_VERBOSE flag is set on the http_exchange() call, resulting in additional debugging output for the wire protocol. (check-in: 80896224 user: drh tags: trunk)
12:44
Check if markdown paragraphs contains lists. Fixes issue reported in b598ac56defddb2a. (Closed-Leaf check-in: 25028896 user: preben tags: markdown-multiple-sublists)
2023-11-01
18:56
Version 2.23 (check-in: 47362306 user: drh tags: trunk, release, version-2.23)
14:13
Update the built-in SQLite to version 3.44.0. (check-in: 72e14351 user: drh tags: trunk)

Changes to src/markdown.c.

1681
1682
1683
1684
1685
1686
1687
1688




1689
1690
1691
1692
1693
1694
1695
    ** "end" is left with a value such that data[end] is one byte
    ** past the first '\n' or one byte past the end of the string */
    if( is_empty(data+i, size-i)
     || (level = is_headerline(data+i, size-i))!= 0
    ){
      break;
    }
    if( (i && data[i]=='#') || is_hrule(data+i, size-i) ){




      end = i;
      break;
    }
    i = end;
  }

  work_size = i;







|
>
>
>
>







1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
    ** "end" is left with a value such that data[end] is one byte
    ** past the first '\n' or one byte past the end of the string */
    if( is_empty(data+i, size-i)
     || (level = is_headerline(data+i, size-i))!= 0
    ){
      break;
    }
    if( (i && data[i]=='#')
     || is_hrule(data+i, size-i)
     || prefix_uli(data+i, size-i)
     || prefix_oli(data+i, size-i)
    ){
      end = i;
      break;
    }
    i = end;
  }

  work_size = i;