mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
30c3aa4f5b
markdown: use builtin dark/light theme detection handle invalid markdown Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/218 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: techknowlogick <techknowlogick@gitea.io>
26 lines
511 B
Go
26 lines
511 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package print
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// formatSize get kb in int and return string
|
|
func formatSize(kb int64) string {
|
|
if kb < 1024 {
|
|
return fmt.Sprintf("%d Kb", kb)
|
|
}
|
|
mb := kb / 1024
|
|
if mb < 1024 {
|
|
return fmt.Sprintf("%d Mb", mb)
|
|
}
|
|
gb := mb / 1024
|
|
if gb < 1024 {
|
|
return fmt.Sprintf("%d Gb", gb)
|
|
}
|
|
return fmt.Sprintf("%d Tb", gb/1024)
|
|
}
|