Shloka No. | Translation (Key teachings) |
---|---|
2.38 Karma Yoga Jnana Yoga | Fight with equanimity, treating victory and defeat the same. Perform duty without attachment to outcomes for true spiritual balance. |
2.39 Nature of the Soul Jnana Yoga | Krishna introduces Jnana Yoga, the wisdom of selfless action. Selfless action guided by wisdom frees one from worldly bondage. |
2.40 Karma Yoga Jnana Yoga | Selfless action protects from failure and leads to spiritual gain. Performing duty without selfish motives ensures spiritual progress without loss. |
const rows = document.querySelectorAll('#shloka-table tbody tr');
rows.forEach(row => { if (selected.length === 0) { row.style.display = ''; } else { const rowClasses = row.className.split(' '); const match = selected.some(tag => rowClasses.includes(tag)); row.style.display = match ? '' : 'none'; } }); }