You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add way to change configurations for the whole pre-existing file. For example, if a file currently uses - (dash) for bullet_character, but they want to change it to *, call a method called #convert:
defconvert(attribute,from,to)# rewrite the file with the attribute change from`from` to `to`ends=Standup.news.convert(:bullet_header,'-','*')
The text was updated successfully, but these errors were encountered:
On second thought, I'm already making it so when a file is read in, the leading character is removed and then re-added when the file is written. Since I know what the header should be, when I read it in, I can make sure the current settings match what's already in the file. For example, if entry_header_depth == 2, but the entry header starts with ###, we can pretty easily determine that. Ask the user if they'd like to change this setting for the whole file; if they don't, it can cause issues reading it.
Add way to change configurations for the whole pre-existing file. For example, if a file currently uses
-
(dash) forbullet_character
, but they want to change it to*
, call a method called#convert
:The text was updated successfully, but these errors were encountered: