|
1 | 1 | # Next
|
2 | 2 |
|
3 |
| -[diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.5...master) |
| 3 | +[diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.6...master) |
4 | 4 |
|
5 |
| -- Fix indentation for comments |
6 |
| -- Improve indentation for tags |
7 |
| -- Support `singleQuote` option |
8 |
| -- Setup eslint with TypeScript configuration ([#4]) |
9 |
| -- Setup [Azure Pipelines](https://dev.azure.com/shinigami92/prettier-plugin-pug/_build?definitionId=1) |
| 5 | +# 1.0.0-alpha.6 |
| 6 | + |
| 7 | +[diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.5...1.0.0-alpha.6) |
| 8 | + |
| 9 | +- Fix indentation for comments |
| 10 | +- Improve indentation for tags |
| 11 | +- Support `singleQuote` option |
| 12 | +- Setup eslint with TypeScript configuration ([#4]) |
| 13 | +- Setup [Azure Pipelines](https://dev.azure.com/shinigami92/prettier-plugin-pug/_build?definitionId=1) |
10 | 14 |
|
11 | 15 | [#4]: https://github.com/Shinigami92/prettier-plugin-pug/pull/4
|
12 | 16 |
|
13 | 17 | # 1.0.0-alpha.5
|
14 | 18 |
|
15 | 19 | [diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.4...1.0.0-alpha.5)
|
16 | 20 |
|
17 |
| -- Fix indentation of piped text |
| 21 | +- Fix indentation of piped text |
18 | 22 |
|
19 | 23 | # 1.0.0-alpha.4
|
20 | 24 |
|
21 | 25 | [diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.3...1.0.0-alpha.4)
|
22 | 26 |
|
23 |
| -- Fix indentation after `outdent` |
| 27 | +- Fix indentation after `outdent` |
24 | 28 |
|
25 | 29 | # 1.0.0-alpha.3
|
26 | 30 |
|
27 | 31 | [diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.2...1.0.0-alpha.3)
|
28 | 32 |
|
29 |
| -- Improvement of indents, empty lines and spaces |
30 |
| - |
31 |
| -- Keep indent for `code` if wanted |
| 33 | +- Improvement of indents, empty lines and spaces |
32 | 34 |
|
33 |
| - ```pug |
34 |
| - //- Input |
35 |
| - block page_meta |
36 |
| - - var page_title = "Markdown" |
37 |
| - - var page_description = "This is a page description." |
| 35 | +- Keep indent for `code` if wanted |
38 | 36 |
|
39 |
| - //- Output (1.0.0-alpha.2) |
40 |
| - block page_meta |
| 37 | + ```pug |
| 38 | + //- Input |
| 39 | + block page_meta |
41 | 40 | - var page_title = "Markdown"
|
42 | 41 | - var page_description = "This is a page description."
|
43 | 42 |
|
44 |
| - //- Output (1.0.0-alpha.3) |
45 |
| - block page_meta |
46 |
| - - var page_title = "Markdown" |
47 |
| - - var page_description = "This is a page description." |
48 |
| - ``` |
| 43 | + //- Output (1.0.0-alpha.2) |
| 44 | + block page_meta |
| 45 | + - var page_title = "Markdown" |
| 46 | + - var page_description = "This is a page description." |
| 47 | +
|
| 48 | + //- Output (1.0.0-alpha.3) |
| 49 | + block page_meta |
| 50 | + - var page_title = "Markdown" |
| 51 | + - var page_description = "This is a page description." |
| 52 | + ``` |
49 | 53 |
|
50 | 54 | # 1.0.0-alpha.2
|
51 | 55 |
|
52 | 56 | [diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/1.0.0-alpha.1...1.0.0-alpha.2)
|
53 | 57 |
|
54 |
| -- Correct some unnecessary blank lines |
| 58 | +- Correct some unnecessary blank lines |
55 | 59 |
|
56 |
| -- Correct a missing whitespace after `interpolated-code` token |
| 60 | +- Correct a missing whitespace after `interpolated-code` token |
57 | 61 |
|
58 |
| -- Handle new Tokens |
| 62 | +- Handle new Tokens |
59 | 63 |
|
60 |
| - - [`block`](https://pugjs.org/language/inheritance.html#block-append-prepend) |
61 |
| - - [`extends`](https://pugjs.org/language/inheritance.html) |
62 |
| - - [`path`](https://pugjs.org/language/inheritance.html) |
63 |
| - - [`start-pug-interpolation`](https://pugjs.org/language/interpolation.html#tag-interpolation) |
64 |
| - - [`end-pug-interpolation`](https://pugjs.org/language/interpolation.html#tag-interpolation) |
65 |
| - - [`include`](https://pugjs.org/language/includes.html) |
66 |
| - - [`filter`](https://pugjs.org/language/filters.html) |
| 64 | + - [`block`](https://pugjs.org/language/inheritance.html#block-append-prepend) |
| 65 | + - [`extends`](https://pugjs.org/language/inheritance.html) |
| 66 | + - [`path`](https://pugjs.org/language/inheritance.html) |
| 67 | + - [`start-pug-interpolation`](https://pugjs.org/language/interpolation.html#tag-interpolation) |
| 68 | + - [`end-pug-interpolation`](https://pugjs.org/language/interpolation.html#tag-interpolation) |
| 69 | + - [`include`](https://pugjs.org/language/includes.html) |
| 70 | + - [`filter`](https://pugjs.org/language/filters.html) |
67 | 71 |
|
68 |
| -- Improve space formatting |
| 72 | +- Improve space formatting |
69 | 73 |
|
70 |
| - Use recommended solutions [link](https://pugjs.org/language/plain-text.html#recommended-solutions) |
| 74 | + Use recommended solutions [link](https://pugjs.org/language/plain-text.html#recommended-solutions) |
71 | 75 |
|
72 |
| - ```pug |
73 |
| - //- Input |
74 |
| - v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
75 |
| - v-icon save |
76 |
| - | {{ $t('mylangkeys.crud.save') }} |
| 76 | + ```pug |
| 77 | + //- Input |
| 78 | + v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
| 79 | + v-icon save |
| 80 | + | {{ $t('mylangkeys.crud.save') }} |
77 | 81 |
|
78 |
| - //- Output (1.0.0-alpha.1) |
79 |
| - v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
80 |
| - v-icon save |
81 |
| - | {{ $t('mylangkeys.crud.save') }} |
| 82 | + //- Output (1.0.0-alpha.1) |
| 83 | + v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
| 84 | + v-icon save |
| 85 | + | {{ $t('mylangkeys.crud.save') }} |
82 | 86 |
|
83 |
| - //- Output (1.0.0-alpha.2) |
84 |
| - v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
85 |
| - v-icon save |
86 |
| - | |
87 |
| - | {{ $t('mylangkeys.crud.save') }} |
88 |
| - ``` |
| 87 | + //- Output (1.0.0-alpha.2) |
| 88 | + v-btn(color="primary", name="save", @click="save", :disabled="saving", :loading="saving") |
| 89 | + v-icon save |
| 90 | + | |
| 91 | + | {{ $t('mylangkeys.crud.save') }} |
| 92 | + ``` |
89 | 93 |
|
90 | 94 | # 1.0.0-alpha.1
|
91 | 95 |
|
92 | 96 | [diff](https://github.com/Shinigami92/prettier-plugin-pug/compare/5fb671e3fbaa03be554c78f9be1ea53cfdadd78a...1.0.0-alpha.1)
|
93 | 97 |
|
94 |
| -- Initial alpha release |
| 98 | +- Initial alpha release |
0 commit comments