Why would I include *.md in .dockerignore?

Here https://docs.docker.com/v1.8/reference/builder/#dockerignore-file
there’s an example of .dockerignore file:

*/temp*
*/*/temp*
temp?
*.md
!LICENSE.md

What would happen if we don’t include them? How would they affect the docker?