mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
doc: update docs
This commit is contained in:
parent
20866ccb49
commit
bc9085786d
@ -11,7 +11,7 @@
|
|||||||
|庄佳彬|hans|zhongyong|锟斤拷|bygkn|
|
|庄佳彬|hans|zhongyong|锟斤拷|bygkn|
|
||||||
|大周|Saoforest|yang_zzu|dgmico|Ikko Eltociear Ashimine|
|
|大周|Saoforest|yang_zzu|dgmico|Ikko Eltociear Ashimine|
|
||||||
|XiaoLin|锁力|阿志同学|玩具猫|chenjh3|
|
|XiaoLin|锁力|阿志同学|玩具猫|chenjh3|
|
||||||
|chenjian835@163.com|duxlei|meng.liu3|yaochen4|zhy_black|
|
|chenjian835|duxlei|meng.liu3|yaochen4|zhy_black|
|
||||||
|豌豆粉|ζั͡ ั͡ ั͡ ั͡Wm|18007559437|陈国正|gongzhongqiang|
|
|豌豆粉|ζั͡ ั͡ ั͡ ั͡Wm|18007559437|陈国正|gongzhongqiang|
|
||||||
|luy|凌尘|乌鸦笑猪黑|EafonYoung|Alex|
|
|luy|凌尘|乌鸦笑猪黑|EafonYoung|Alex|
|
||||||
|wnp|MyronLi|Pioneer-Sun|norkts|Q_Alex|
|
|wnp|MyronLi|Pioneer-Sun|norkts|Q_Alex|
|
||||||
|
|||||||
@ -39,7 +39,7 @@ public class ContributorsDocGen {
|
|||||||
for (String url : urls) {
|
for (String url : urls) {
|
||||||
startIndex = getMdContent(markdown, url, cookie, startIndex);
|
startIndex = getMdContent(markdown, url, cookie, startIndex);
|
||||||
}
|
}
|
||||||
if (startIndex != 0){
|
if (startIndex != 0) {
|
||||||
markdown.append("|\n");
|
markdown.append("|\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,8 +53,8 @@ public class ContributorsDocGen {
|
|||||||
public static void writeString(File file, StringBuilder markdown) throws IOException {
|
public static void writeString(File file, StringBuilder markdown) throws IOException {
|
||||||
try (FileWriter fw = new FileWriter(file, false);
|
try (FileWriter fw = new FileWriter(file, false);
|
||||||
BufferedWriter bw = new BufferedWriter(fw)) {
|
BufferedWriter bw = new BufferedWriter(fw)) {
|
||||||
bw.write(markdown.toString());
|
bw.write(markdown.toString());
|
||||||
bw.newLine();
|
bw.newLine();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,6 +70,9 @@ public class ContributorsDocGen {
|
|||||||
Element img = userListItem.selectFirst("img");
|
Element img = userListItem.selectFirst("img");
|
||||||
String src = img.attr("src");
|
String src = img.attr("src");
|
||||||
String userName = userListItem.selectFirst(".username").text();
|
String userName = userListItem.selectFirst(".username").text();
|
||||||
|
if (userName.contains("@")) {
|
||||||
|
userName = userName.substring(0, userName.indexOf("@"));
|
||||||
|
}
|
||||||
|
|
||||||
markdown.append("|");
|
markdown.append("|");
|
||||||
if (StringUtil.isNotBlank(src)) {
|
if (StringUtil.isNotBlank(src)) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user