generated from halo-dev/plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### What this PR does? 修复标签链接不正确的问题 Fixes #139 ```release-note 修复标签相对链接不正确的问题 ```
- Loading branch information
Showing
5 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
package run.halo.moments.vo; | ||
|
||
import lombok.Builder; | ||
import lombok.ToString; | ||
import lombok.Value; | ||
import org.springframework.web.util.UriUtils; | ||
import java.nio.charset.StandardCharsets; | ||
|
||
@Value | ||
@Builder | ||
public class MomentTagVo { | ||
|
||
String name; | ||
|
||
String permalink; | ||
|
||
Integer momentCount; | ||
} |