* Fix justification 'right' vs 'left': They were flipped (durp!). Right aligned is now really that, etc. You may need to update your theme.hjson/similar!
This commit is contained in:
@@ -122,10 +122,10 @@ function quote(s) {
|
||||
|
||||
function getPadAlign(align) {
|
||||
return {
|
||||
'<' : 'right',
|
||||
'>' : 'left',
|
||||
'<' : 'left',
|
||||
'>' : 'right',
|
||||
'^' : 'center',
|
||||
}[align] || '<';
|
||||
}[align] || '>';
|
||||
}
|
||||
|
||||
function formatString(value, tokens) {
|
||||
|
||||
Reference in New Issue
Block a user