Skip to content

Commit

Permalink
Brushed off a few TILs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Nov 30, 2023
1 parent f807415 commit 35c4863
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
37 changes: 37 additions & 0 deletions dev.to/how_to_make_a_series.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# How to make a series

dev.to has a very nice representation of articles, which are a so-called series.

A series require more that one article sharing the same meta-data.

The meta-data can be added to to of the posts in the form of:

```markdown
---
series: My Super Series Name
---
```

The three consecutive dashes/hyphens are the meta-data heading section of a dev.to article. The default looks as follows:

```markdown
---
title:
published: false
description:
tags:
# cover_image: https://direct_url_to_image.jpg
# Use a ratio of 100:42 for best results.
# published_at: 2023-03-11 16:02 +0000
---
```

Adjust the fields and add the `series:` key to your article, with a proper series name.

The moment you have more than one post sharing the series name, it is presented as a series.

This actually mean that the you can retrofit the series tag on old articles.

## Resources and References

- [dev.to blog post: "Dev.to Writing: Making a Series!"](https://dev.to/kallmanation/dev-to-writing-making-a-series-3h79)
14 changes: 14 additions & 0 deletions mojolicious/learn_mojolicious.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Learn Mojolicious

[The official Mojolicious tutorial][MOJOTUT] is quite good.

Alternatively, you can use the [Perl Maven][PERLMAVEN].

## Resources and References

- [Mojolicious][MOJO]
- [Mojolicious: Tutorial][MOJOTUT]

[MOJO]: https://mojolicious.org/
[MOJOTUT]: https://docs.mojolicious.org/Mojolicious/Guides/Tutorial
[PERLMAVEN]: https://perlmaven.com/getting-started-with-mojolicious-lite

0 comments on commit 35c4863

Please sign in to comment.