submitted by /u/davorg
[link] [comments]
[link] [comments]
Deploying Dancer Apps (Addendum) - Perl Hacks
Back in May, I wrote a blog post about how I had moved a number of Dancer2 applications to a new server and had, in the process, created a standardised procedure for deploying Dancer2 apps.Dave Cross (Perl Hacks)
This year is the 25th Perl Advent Calendar. It's time to start planning what you'd like to write about, or throw some ideas for what you'd like to read.
It all happens through the Perl Advent GitHub repo.
submitted by /u/briandfoy
[link] [comments]
submitted by /u/OODLER577 [link] [comments] |
- YouTube
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.www.youtube.com
If there was a mechanism to,
- Opt-into Markdown documentation on a per-file basis.
- Document your code with Markdown instead instead of POD
Assuming these concerns were met,
- A call to
perldoc MyModule
rendered the Markdown to text with something likemdcat
which supports images, links - No browser was required at all (
mdcat
works without a browser). - Support for terminal-rendering of Markdown was a part of core.
- All of this was done merely by creating a distinction between a code-comment, and a doc-comment as demonstrated in this repo, where
- A doc comment was marked with a line starting
##
- Any other use of
#
continues to carry code-commenting semantics
- A doc comment was marked with a line starting
Would you prefer it and use it?
submitted by /u/EvanCarroll
[link] [comments]
GitHub - swsnr/mdcat: cat for markdown
cat for markdown. Contribute to swsnr/mdcat development by creating an account on GitHub.GitHub