Skip to content

Remove from the main and create functions#15

Open
Flyounet wants to merge 13 commits intotaylorchu:masterfrom
Flyounet:functionalize
Open

Remove from the main and create functions#15
Flyounet wants to merge 13 commits intotaylorchu:masterfrom
Flyounet:functionalize

Conversation

@Flyounet
Copy link

The 4 previous PRs are already included in this one :

  • DraftDir + manage accent for slug()
  • Prev and Next Post
  • Toggle status + list posts
  • Put config in a function

No features added in this PR, only the code in the main switch moved to functions.

Previously the slug function didn't handled accent :
echo 'Baker est très bien' | tr -cs '[:alnum:]\n' - | tr '[:upper:]' '[:lower:]' | sed 's|^-*||;s|-*$||'
baker-est-tr-s-bien

Now it handles them :
echo 'Baker est très bien' | iconv -f utf8 -t ascii//TRANSLIT | tr -cs '[:alnum:]\n' - | tr '[:upper:]' '[:lower:]' | sed 's|^-*||;s|-*$||'
baker-est-tres-bien
The idea is when you're on a Post, you can go to the older or the newer.
If the there is no newer or no older, you go to the index.
 pour expliquer en quoi cette fusion est
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant