privateOmega / html-to-docx

HTML to DOCX converter
MIT License
373 stars 140 forks source link

Margins don't work #225

Open obrezalovro opened 10 months ago

obrezalovro commented 10 months ago
const options = {
  margins: {
    top: 10000,   // Set the top margin to 1 centimeter
    right: 2400, // Set the right margin to 2 centimeters
    left: 5000   // Set the left margin to 2 centimeters
  },
  pageNumber: true,
  font: 'Arial',
  fontSize: 18,
  footer: true,
  header: true,
}

This options object doesn't affect the exported document - did I create the object wrong?