Skip to content

Commit

Permalink
Adapt to the new frame structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Sep 20, 2024
1 parent d262fc2 commit 8167d0c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,14 +277,20 @@ public String toString() {

static class AntoraSource {
String url;
String local;
String worktree;
String refname;
String reftype;
String startPath;

public String getUrl() {
return url;
}

public String getLocal() {
return local;
}

public String getWorktree() {
return worktree;
}
Expand All @@ -293,6 +299,10 @@ public String getRefname() {
return refname;
}

public String getReftype() {
return reftype;
}

public String getStartPath() {
return startPath;
}
Expand Down
2 changes: 2 additions & 0 deletions docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ INFO [io.qua.dep.dev.RuntimeUpdatesProcessor] ... Live reload total time: 1.151

Then the page should get loaded with the new title "I love Antora".

[[test-warnings]]
image::live-edit.png[optional attribute,optional attribute]

[[test-warnings]]
Once you are done with editing, hit `Q` or `CRTL+C` to exit the dev mode.

== Configuration
Expand Down

0 comments on commit 8167d0c

Please sign in to comment.