mirror of
https://github.com/typecho/typecho.git
synced 2025-03-23 19:40:22 +01:00
fixed #50
This commit is contained in:
parent
1eba4e580f
commit
b94c2d2a0a
@ -4858,10 +4858,10 @@ else
|
||||
|
||||
if (!chunk.selection) {
|
||||
if (isImage) {
|
||||
chunk.selection = that.getString("imagename") || that.getString("imagedescription");
|
||||
chunk.selection = that.getString("imagename").replace('_', '\\_') || that.getString("imagedescription");
|
||||
}
|
||||
else {
|
||||
chunk.selection = that.getString("linkname") || that.getString("linkdescription");
|
||||
chunk.selection = that.getString("linkname").replace('_', '\\_') || that.getString("linkdescription");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user