On Thursday, 2 September 2021 at 16:26:19 UTC, jfondren wrote:


What commands are you running? What you describe doing, works:

```


$ dmd -D file

$ w3m -dump file.html|grep -A1 function
A sample function. Let's check what we will get in documentation. abc - A
    simple string

$ rm -fv file.html
removed 'file.html'

$ dmd -D file

$ w3m -dump file.html|grep -A1 function
A sample function. Let's check what we will get in documentation. abc - A
    simple string
$
```

Thanks for the reply. My command was the problem. I repeatedly used
"dmd -run test.d -D"
But now, I can see the html file when I use this -- "dmd -D test.d".

Reply via email to