-
| Given something like this, how can I document the final class and its members? class MixinA:
    def do_thing_a(self):
      pass
class MixinB:
    def do_thing_b(self):
      pass
class ChildAB(MixinA, MixinB):
    passI'm writing the Markdown as: ::: package.ChildAB
    handler: python
    options:
      members:
        - do_thing_a
        - do_thing_bAdding  | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            pawamoy
          
      
      
        Apr 1, 2025 
      
    
    Replies: 1 comment 5 replies
-
| Try setting  | 
Beta Was this translation helpful? Give feedback.
                  
                    5 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Your options are not correctly indented (formatted by prettier?): https://raw.githubusercontent.com/stumpylog/gotenberg-client/refs/heads/chore/autodocs/docs/reference.md
Set
pathsin mkdocs.yml and removesrc.from:::instructionsDo not escape underscores after
:::Adding
inherited_members: trueworksResult:
::: gotenberg_client._chromium.routes.SyncUrlToPdfRoute handler: python options: inherited_members: true members: - fail_on_console_exception - fail_on_exceptions - dont_fail_on_exceptions