My first test post
Mar 25, 2020
My first test post with code.
Title
private fun initMetricProcessors() {
logger.info("Loading metrics processors")
processors = metricsProcessorsLoader.load(pluginClasspath.toCollection(mutableListOf()))
processors?.collectors?.forEach { collector ->
collector.init(metricsStore, project)
}
logCollectorsAndDispatchers()
project.whenBuildFinished { dispatchMetrics() }
}
1
2
3
4
5
6
7
8
9
10
11
12
private fun initMetricProcessors() {
// comment
logger.info("Loading metrics processors")
processors = metricsProcessorsLoader.load(
pluginClasspath.toCollection(mutableListOf())
)
processors?.collectors?.forEach { collector ->
collector.init(metricsStore, project)
}
logCollectorsAndDispatchers()
project.whenBuildFinished { dispatchMetrics() }
}
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |
- First ordered list item
- Another item ⋅⋅* Unordered sub-list.
- Actual numbers don’t matter, just that it’s a number ⋅⋅1. Ordered sub-list
- And another item.
⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we’ll use three here to also align the raw Markdown).
⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ ⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ ⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
- Unordered list can use asterisks
- Or minuses
- Or pluses
H1
H2
H3
H4
H5
H6
Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
Alt-H2
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.