mirror of
https://github.com/canna71/obsidian-sheets.git
synced 2026-07-22 08:30:27 +00:00
basic save
This commit is contained in:
parent
dd50203331
commit
7bb91b9856
1 changed files with 2 additions and 9 deletions
|
|
@ -86,20 +86,13 @@ export function toSpreadsheet(wb: Workbook) {
|
|||
|
||||
if (cell.style.border) {
|
||||
|
||||
|
||||
|
||||
const border = cell.style.border;
|
||||
console.log(border)
|
||||
oStyle.border = {};
|
||||
["top","bottom","left","right"].forEach(what=>{
|
||||
mapColor(oStyle,border,what as borderDir);
|
||||
})
|
||||
// if(border.bottom && border.bottom.style){
|
||||
// oStyle.border.bottom = [
|
||||
// border.bottom.style?.toString(),
|
||||
// "#" + getColor(border.bottom.color)
|
||||
// ]
|
||||
// }
|
||||
});
|
||||
|
||||
}
|
||||
if (cell.style.font) {
|
||||
const font = cell.style.font;
|
||||
|
|
|
|||
Loading…
Reference in a new issue