-
-
Notifications
You must be signed in to change notification settings - Fork 530
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
decode same toml at mac osx & linux os, the result is different #77
Comments
Please provide enough information for someone else to reproduce your problem. In particular, can you show your code? |
you can use the same toml config file,the content like: title = "subject" so, when i decode from mac osx, get the but decode from linux, get from the result , you can find the difference, at osx, title is a string, which value is subject |
Can you please show your code? |
go get github.com/h2object/markdown-pager |
If you could post a minimally reproducible sample of code here in this issue, then that would be great. |
with minimal test, it seems the result is right. I'll check my code , thanks for your patience :) |
title = "subject"
active = "home"
mac osx decode with result:
map[meta:map[title:subject active:home]
linux decode with result:
map[meta:map[title:"subject" active:"home"]
so, when i get .meta.active at template, the value is different at different os....
The text was updated successfully, but these errors were encountered: