Add builder pattern for paragraph, lists, tables

This commit is contained in:
2025-12-02 10:57:54 +01:00
parent 50c9c20eca
commit b602b2a2ff
25 changed files with 1248 additions and 47 deletions

9
lib/ezdoc/nodes/base.rb Normal file
View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
module Ezdoc
module Nodes
class Base
# Base class for all document nodes
end
end
end