Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nlog/nlog.github.io
The official website: nlog-project.org
https://github.com/nlog/nlog.github.io
dotnet logging news-posts nlog website xsd-schema
Last synced: 15 days ago
JSON representation
The official website: nlog-project.org
- Host: GitHub
- URL: https://github.com/nlog/nlog.github.io
- Owner: NLog
- Created: 2013-04-13T20:18:57.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T17:01:12.000Z (2 months ago)
- Last Synced: 2024-10-30T18:17:28.168Z (2 months ago)
- Topics: dotnet, logging, news-posts, nlog, website, xsd-schema
- Language: HTML
- Homepage: https://nlog-project.org
- Size: 40.6 MB
- Stars: 6
- Watchers: 9
- Forks: 24
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is the official NLog GitHub page, [nlog-project.org](https://nlog-project.org/).
Config targets, layouts and layout renderers:
===The config of the targets, layouts and layout renderers:
- [config/targets.json](config/targets.json)
- [config/layouts.json](config/layouts.json)
- [config/layout-renderers.json](config/layout-renderers.json)Those are visible and searchable on https://nlog-project.org/config
### Add a custom component
Do you like to have a custom target, layout or layout renderer listed at https://nlog-project.org/config?
- Please make sure you docs are up-to-date. An example is really recommend!
- Send a PR for one of the JSON filesAdd a news post
===
How to add a new news post.1. Create and new MarkDown file (`.md`) in the `_posts` folder, starting with the date (`yyyy-MM-dd`). Don't use spaces or extra dots in the filename! Don't forget the `.md` extension!
2. Start the post with the [Jekyll front matter](https://jekyllrb.com/docs/frontmatter/),
* `layout: post` is required.
* Choose a good title after `title:`
* Example
```
---
layout: post
title: NLog 3.2.0 has been released
---
```
3. Write some [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/) and save the file.Notes
---
- The markdown parser is different compared to Github itself. So that means: different syntax sometimes:
- Code fences (triple tick) isn't working. See [NLog 4.0 release post](https://github.com/NLog/NLog.github.io/blob/master/_posts/2015-06-09-nlog-4-has-been-released.md)
I prefer markdown when it's possible (the hyperlink).
- Lists should be prepended with a whiteline.
- You can preview you changes to rename your fork to `.github.io` and browse to it!
- Changes are visible in about a minute.