(node, config)
| 161 | * @returns {string} |
| 162 | */ |
| 163 | const stringifyInstruction = (node, config) => { |
| 164 | return ( |
| 165 | config.procInstStart + node.name + ' ' + node.value + config.procInstEnd |
| 166 | ); |
| 167 | }; |
| 168 | |
| 169 | /** |
| 170 | * @param {import('./types.js').XastComment} node |