-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patchesの表示が冗長 #241
Comments
--- a/assets/javascripts/patch-list.js
+++ b/assets/javascripts/patch-list.js
@@ -3,9 +3,10 @@ $(function() {
$.getJSON("//vim-jp.herokuapp.com/patches/json?callback=?", function(items) {
$.each(items, function() {
+ var desc = $('<div/>').html(this.description).text().replace(/^[^\n]*\n\n/, '').replace(/\n(?=Solution:)/, '<br/>')
$('<li/>').append(
$('<a/>').attr({'href': this.link, 'target': '_blank'}).text("Patch " + this.title)
- ).append($('<br/>')).append($('<span/>').text(this.description)).appendTo('#patches-list');
+ ).append($('<br/>')).append($('<span/>').html(desc)).appendTo('#patches-list');
});
});
}); |
k-takata
added a commit
that referenced
this issue
Mar 16, 2017
* Decode character references using `$('<div/>').html(str).text()`. * Remove duplicated description. * Insert a line break before 'Solution:'.
修正をコミットしました。 |
twitterのvim_jpアカウントのツイートも改善されるとうれしいな |
@mattn さんの担当? |
あー、Bram が書き方を変えたのか。 |
やっときまーす。 |
heroku のリソースがきつくなって続行が難しくなってしまった。Google App Engine 等に移行を考え中。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ページの右側に表示されるPatchesの表示が冗長に思います。
この例だと、
patch 8.0.0454: compiler warnings for "always true" comparison
の部分は不要だと思います。また、"
は"
として表示されるべきでしょう。とりあえず、こんなパッチを当てれば表示は改善されますが、これでいいのかは分かりません。
また、
"
だけではなく、<
,>
,&
なども対応が必要かもしれません。The text was updated successfully, but these errors were encountered: