mirror of
https://github.com/mickael-menu/zk
synced 2024-11-19 03:25:40 +00:00
50855154e2
* Move everything under the internal package. * Better separation between core and adapter packages, for easier unit testing. * Simplify data models. * Support multiple opened notebooks during runtime (useful for the LSP server). * Proper surface API which might be exposed later as a public Go package.
19 lines
432 B
Go
19 lines
432 B
Go
package core
|
|
|
|
import "fmt"
|
|
|
|
// stylerMock implements core.Styler by doing the transformation:
|
|
// "hello", "red" -> "red(hello)"
|
|
type stylerMock struct{}
|
|
|
|
func (s *stylerMock) Style(text string, rules ...Style) (string, error) {
|
|
return s.MustStyle(text, rules...), nil
|
|
}
|
|
|
|
func (s *stylerMock) MustStyle(text string, rules ...Style) string {
|
|
for _, rule := range rules {
|
|
text = fmt.Sprintf("%s(%s)", rule, text)
|
|
}
|
|
return text
|
|
}
|