Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomashoneyman/writing
Sources for my writing on thomashoneyman.com
https://github.com/thomashoneyman/writing
purescript
Last synced: about 1 month ago
JSON representation
Sources for my writing on thomashoneyman.com
- Host: GitHub
- URL: https://github.com/thomashoneyman/writing
- Owner: thomashoneyman
- Created: 2020-08-20T20:48:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-17T23:37:47.000Z (about 2 years ago)
- Last Synced: 2024-10-12T23:21:43.433Z (2 months ago)
- Topics: purescript
- Homepage: https://thomashoneyman.com
- Size: 389 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Writing
This repository holds my public writing from [thomashoneyman.com](https://thomashoneyman.com) so the community can help fix typos, suggest improvements, and update content that has fallen out of date. Feel free to open issues or pull requests if you notice something incorrect or off about any content on the site.
## Using Assets
Images and other data used to generate the content is stored in the `assets` directory. To include an image in the markdown content, link to it with `/images/` as the root:
```md
![image title](/images/2019/image.png)
```## Templates
I currently use [Hugo](https://gohugo.io) to generate site content. Hugo supports features for templating, including [shortcodes](https://gohugo.io/content-management/shortcodes) in markdown to opt-in to richer content.
### Shortcodes
Currently, my site supports the following shortcodes:
- `{{< external-link "https://example.com" "link text" >}}` is used to include external links in markdown (it adds an icon to indicate this is an external link).
- `{{< table src="data.csv" class="className" >}}` is used to build tables from CSV data located in the `data` directory. It creates headers for the first row in the CSV and table rows for each row afterwards.
- `{{< subscribe >}}` is used to insert an email subscription block## License
Copyright © 2018-2020 Thomas Honeyman