We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31c7178 commit 9185734Copy full SHA for 9185734
working-groups/main.java
@@ -203,6 +203,11 @@ public String getIndentedReadme() {
203
return readme.replaceAll("\n", "\n ").trim();
204
}
205
206
+ public String getIndentedLastUpdate() {
207
+ String lastUpdateBody = getLastUpdate().body();
208
+ return lastUpdateBody.replaceAll("\n", "\n ").trim();
209
+ }
210
+
211
public Status getStatus() {
212
if (statusUpdates.isEmpty()) {
213
return Status.INACTIVE;
working-groups/templates/wg.yaml.template
@@ -10,6 +10,6 @@ working-groups:
10
last-activity: {board.getLastActivityDate()}
11
{#if board.getLastUpdate() && board.getLastUpdate().body.trim()}
12
last-update: |
13
- {board.getLastUpdate().body.trim()}
+ {board.getIndentedLastUpdate().raw}
14
{/if}
15
{/for}
0 commit comments