Felipe Curty

Results 36 comments of Felipe Curty

This update is for Sublime Text 2. ![Screen Shot 2013-03-03 at 12 47 18 AM](https://f.cloud.github.com/assets/615155/213755/19619b68-83b5-11e2-9838-dd2d1f43d038.png)

Hi @RLesur, I did just minor tests with my documents. I agree that more tests are required. I saw some unit tests on the project, but they apparently test some...

@RLesur some tests can also explore the generated DOM. For instance, a javascript code could check whether a header is repeated on every page or if a footnote is presented...

I just saw that the paged.js use this strategy (DOM check) for unit testing. https://gitlab.pagedmedia.org/tools/pagedjs/tree/master/specs They basically have an HTML and a javascript file that check whether the result is...

@RLesur I think we only need to unit test the 'hacks' included on pagedown, e.g., the hooks or custom behaviors.

I was trying to set up the test environment yesterday, using JEST but got some issues with my WSL installation to use puppeteer. Since we need to test the DOM,...

Hi @cderv, I just created the #253 to share my progress (still work in progress). Regards,

I would suggest including contributing guidelines and the how-to into the `CONTRIBUTING.md` file. This file is "known" by GitHub and used in other projects. Maybe, we can add general information...

@zackarno , I think you could use CSS. ```css @page { @bottom-center { content: "My repeated footer" } } ``` Maybe you can try to format the `@bottom-center` to fit...

Thanks. We can run the jest test using: ```bash yarn install ./node_modules/.bin/jest ``` But the test is currently failing.