-
Notifications
You must be signed in to change notification settings - Fork 2
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
Sections with ident mark #4
Comments
@AlexRydzewski Does ident mark mean ">" ? Could you give me an example of the problem? |
If there is a section on a some page ("thepage", for example), such as "h3((. blabla", this section will not be found by the macro. |
@AlexRydzewski I added the regex
https://github.com/redmine/redmine/blob/e575b7a6fcbffd5e48475b735cfc948ed3cc0d0e/lib/redmine/wiki_formatting/textile/formatter.rb#L60 |
Thank you for great plugin!
I cannot perform this trick when section has include ident mark.
Perhaps regex must be that (?:\A|\r?\n\s*\r?\n)h\d+\(+?.[ \t]+(.?)(?=\r?\n\s\r?\n|\z)
or that (?:\A|\r?\n\s*\r?\n)h\d+\W+?.[ \t]+(.?)(?=\r?\n\s\r?\n|\z)
The text was updated successfully, but these errors were encountered: