On Mon, Dec 12, 2016 at 2:50 PM, Largo84 <[email protected]> wrote: > No, the refresh from disk was for a @auto-md node. The ``@@`` was in a > child node headline. >
Thanks for the clarification. The problem is likely the following regex: md_hash_pattern = re.compile(r'^(#+)\s*(\w+)(.*)\n') in the is_hash method. It requires a *word *following 1 or more '#' characters. That's too strict, it seems. Instead, it should just eat everything except trailing whitespace. Playing around with pythex <http://pythex.org/>, it appears that the following might work: md_hash_pattern = re.compile(r'^(#+)\s*(.+)\s*\n') You can try this yourself if you like. I probably won't get to it today. EKR -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/leo-editor. For more options, visit https://groups.google.com/d/optout.
