|
| 1 | +--- |
| 2 | +jupytext: |
| 3 | + formats: md:myst |
| 4 | + notebook_metadata_filter: -jupytext.text_representation.jupytext_version |
| 5 | + text_representation: |
| 6 | + extension: .md |
| 7 | + format_name: myst |
| 8 | + format_version: 0.13 |
| 9 | +kernelspec: |
| 10 | + display_name: itables |
| 11 | + language: python |
| 12 | + name: itables |
| 13 | +--- |
| 14 | + |
1 | 15 | # Contributing |
2 | 16 |
|
3 | 17 | Thanks for considering making a contribution to ITables. There are |
4 | | -indeed many ways to help! |
| 18 | +many ways you can help! |
5 | 19 |
|
6 | | -## Reporting an issue |
| 20 | +## Report an issue |
7 | 21 |
|
8 | 22 | If you see an issue, a possible improvement, or if you can't find |
9 | 23 | the answer to your question, then you are very welcome to create |
10 | 24 | an issue on this project. Please provide enough detail so that |
11 | 25 | we can reproduce the issue. |
12 | 26 |
|
13 | | -## Improving the documentation |
| 27 | +## Improve the documentation |
14 | 28 |
|
15 | 29 | If you would like to add a new example, |
16 | 30 | or improve the documentation, feel free to make a pull request! |
17 | 31 |
|
18 | 32 | You can render the documentation locally - see the section on |
19 | 33 | [Jupyter Book](developing.md#jupyter-book) in the developer guide. |
20 | 34 |
|
21 | | -## Developing a new feature |
| 35 | +## Give credit to ITables |
| 36 | + |
| 37 | +It's always great to see new stars coming to ITables! <a class="github-button" href="https://github.com/mwouts/itables" data-icon="octicon-star" data-show-count="true"></a> |
| 38 | +<script src="https://buttons.github.io/buttons.js"></script> |
| 39 | + |
| 40 | +If you wanted to share a link to ITables and DataTables (no obligation whatsoever), you could use something like this: |
| 41 | + |
| 42 | +```{code-cell} |
| 43 | +from IPython.display import HTML, display |
| 44 | +
|
| 45 | +display( |
| 46 | + HTML( |
| 47 | + """ |
| 48 | +Tables displayed with <a href=https://mwouts.github.io/itables/>ITables</a>, |
| 49 | +a Python wrapper for <a href=https://datatables.net>DataTables</a> |
| 50 | +""" |
| 51 | + ) |
| 52 | +) |
| 53 | +``` |
| 54 | + |
| 55 | +## Support DataTables |
| 56 | + |
| 57 | +Allan Jardine, the main developer of DataTables, has done a fantastic work on [DataTables](https://datatables.net/). |
| 58 | + |
| 59 | +If you enjoy his library, you could become a |
| 60 | +[supporter](https://datatables.net/supporters/) - |
| 61 | +contributions range from 9 to 99$/year before VAT. |
| 62 | +Or you could take a subscription for DataTable's [Editor](https://editor.datatables.net) |
| 63 | +that ITables might support in the future (please subscribe to [#243](https://github.com/mwouts/itables/issues/243) for updates). |
| 64 | + |
| 65 | +## Develop a new feature |
22 | 66 |
|
23 | 67 | It is generally a good idea to get in touch with us first - e.g. |
24 | 68 | open an issue and let us know what you'd like to do. |
25 | 69 |
|
26 | 70 | But you can also simply clone the project and test your ideas. |
27 | | - |
28 | 71 | A guide on how to set up a development environment, and how to |
29 | 72 | run some tests, is available [here](developing.md). |
0 commit comments