We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
現在のbin/md2reviewコードではoffset値は0、1、2しか取れず、「#の多いレベルを少ないレベルに変換」(項を節に格上げするなど)する方向しかできないようになっています。
if arg =~ /^--render-header-offset\s*=\s*([012])$/
実際に受け取る原稿では逆に、「節分割したmdで、節題が#から始まり、章題はREADME.mdの目次のほうを見よ」という書き方をしているケースが非常に多く見られます。offset値にマイナスをとれれば、-1のように入れればこれに対応できます。
if arg =~ /^--render-header-offset\s*=\s*(-?[012])$/
とかでしょうか。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
現在のbin/md2reviewコードではoffset値は0、1、2しか取れず、「#の多いレベルを少ないレベルに変換」(項を節に格上げするなど)する方向しかできないようになっています。
実際に受け取る原稿では逆に、「節分割したmdで、節題が#から始まり、章題はREADME.mdの目次のほうを見よ」という書き方をしているケースが非常に多く見られます。offset値にマイナスをとれれば、-1のように入れればこれに対応できます。
とかでしょうか。
The text was updated successfully, but these errors were encountered: